Revision 5896d8bf
Von Moritz Bunkus vor etwa 12 Jahren hinzugefügt
config/lx_office.conf.default | ||
---|---|---|
102 | 102 |
# Path to the old memberfile (ignored on new installations) |
103 | 103 |
memberfile = users/members |
104 | 104 |
|
105 |
[applications] |
|
106 |
# Location of sendmail |
|
105 |
[mail_delivery] |
|
106 |
# Delivery method can be 'sendmail' or 'smtp' (the default). For |
|
107 |
# 'method = sendmail' the parameter 'mail_delivery.sendmail' is used |
|
108 |
# as the executable to call. If 'applications.sendmail' still exists |
|
109 |
# (backwards compatibility) then 'applications.sendmail' will be used |
|
110 |
# instead of 'mail_delivery.sendmail'. |
|
111 |
method = smtp |
|
112 |
# Location of sendmail for 'method = sendmail' |
|
107 | 113 |
sendmail = /usr/sbin/sendmail -t<%if myconfig_email%> -f <%myconfig_email%><%end%> |
114 |
# Settings for 'method = smtp'. |
|
115 |
host = localhost |
|
116 |
port = 25 |
|
117 |
# Security can be 'tls', 'ssl' or 'none'. Unset equals 'none'. This |
|
118 |
# determines whether or not encryption is used and which kind. For |
|
119 |
# 'tls' the module 'Net::SMTP::TLS' is required; for 'ssl' |
|
120 |
# 'Net::SMTP::TLS' is required and 'none' only uses 'Net::SMTP'. |
|
121 |
security = tls |
|
122 |
# Authentication is only used if 'login' is set. You should only use |
|
123 |
# that with 'tls' or 'ssl' encryption. |
|
124 |
login = |
|
125 |
password = |
|
126 |
|
|
127 |
[applications] |
|
108 | 128 |
# Location of OpenOffice.org writer |
109 | 129 |
openofficeorg_writer = oowriter |
110 | 130 |
# Location of the X virtual frame buffer used for OpenOffice |
Auch abrufbar als: Unified diff
E-Mails auch per SMTP verschicken können
Default ist nun, via SMTP über localhost zu verschicken. Mögliche
Optionen sind: TLS oder SSL-Verschlüsselung, Authentifizierung,
Verwendung von Sendmail anstelle von SMTP (wie bisher).
Dokumentation folgt morgen.