comparison example.cfg @ 113:f45115bfb17a

Implement sendmail mail sending support. Various e-mail related settings have also changed, so this is not backwards compatible. Sorry.
author Matti Hamalainen <ccr@tnsp.org>
date Tue, 18 Oct 2016 13:26:20 +0300
parents fe3bfabf0b5f
children
comparison
equal deleted inserted replaced
112:c0c177950dac 113:f45115bfb17a
29 29
30 30
31 ### 31 ###
32 ### E-mail settings 32 ### E-mail settings
33 ### 33 ###
34 # Enable/disable sending of e-mail message in case of fatal errors 34 # Enable sending of e-mail message in case of fatal errors
35 # off = Don't send e-mail
36 # smtp = use an SMTP server for sending (see below settings)
37 # sendmail = use local sendmail (see below settings)
35 email = off 38 email = off
36 39
40 # Sendmail binary location
41 email_sendmail = /usr/bin/sendmail
42
37 # SMTP server for sending mail 43 # SMTP server for sending mail
38 #email_server = host[:port] 44 #email_smtp_server = host[:port]
39 45
40 # SMTP user and password (not encrypted!) 46 # SMTP user and password (not encrypted!)
41 #email_srv_user = username 47 #email_smtp_user = username
42 #email_srv_password = password 48 #email_smtp_password = password
43 49
44 # Use TLS 50 # Use TLS
45 #email_use_tls = no 51 #email_smtp_tls = no
46 52
47 53
48 # Message subject 54 # Message subject
49 email_subject = Google Calendar MultiMerge error! 55 email_subject = Google Calendar MultiMerge error!
50 56