equal
deleted
inserted
replaced
|
1 # configuration file for the mailtb module (mailtb.py) |
|
2 # |
|
3 # /!\ WARNING /!\ |
|
4 # either: |
|
5 # Place this file outside of your web server's document root! |
|
6 # or: |
|
7 # Make sure that your web server does not serve this file! |
|
8 |
|
9 [mailtb] |
|
10 ; subject of the email |
|
11 subject = Exception Notification |
|
12 # |
|
13 # Sender information |
|
14 # |
|
15 ; The FROM e-mail address |
|
16 from_addr = webmaster@example.com |
|
17 ; Sender's full name |
|
18 from_name = Webmaster |
|
19 |
|
20 # |
|
21 # Recipient information |
|
22 # |
|
23 ; E-Mail address of the recipient |
|
24 rcpt_addr = john.doe@example.net |
|
25 ; Recipient's full name |
|
26 rcpt_name = John Doe |
|
27 |
|
28 # |
|
29 # SMTP server information |
|
30 # |
|
31 ; Hostname of the mail server for sending e-mails |
|
32 smtp_host = localhost |
|
33 ; Port to use for the SMTP connection: |
|
34 ; * 25 smtp |
|
35 ; * 587 submission |
|
36 ; * 465 ssmtp (obsolete) |
|
37 smtp_port = 25 |
|
38 ; Should we use the starttls command on port 25 or 587? |
|
39 ; If the starttls command fails no message will be sent! |
|
40 ; The error will be written to 'error_log' |
|
41 ; * True or False |
|
42 smtp_tls = False |
|
43 |
|
44 # |
|
45 # SMTP AUTH settings |
|
46 # leave empty if you don't need it |
|
47 # |
|
48 ; Your SMTP user name for authentication |
|
49 auth_user = |
|
50 ; Your password for SMTP authentication |
|
51 auth_pass = |
|
52 |
|
53 # |
|
54 # Log file for SMTP errors |
|
55 # make sure that your web server can write to this file |
|
56 # |
|
57 ; Absolute path to the error log file |
|
58 error_log = /tmp/mailtb_error.log |
|
59 |