Skip to content

Commit

Permalink
Add missing 'secure' configuration for SMTP.
Browse files Browse the repository at this point in the history
  • Loading branch information
yunosh committed Nov 3, 2014
1 parent 81035e4 commit 9e6eaf5
Showing 1 changed file with 16 additions and 8 deletions.
24 changes: 16 additions & 8 deletions horde/config/conf.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1384,6 +1384,14 @@
<configinteger name="port" required="false" desc="The port to connect
to [25]. This is HIGHLY RECOMMENDED to be 587, the mail submission port.
(RFC 6409/STD 72; sending mail via port 25 is DEPRECATED.)"/>
<configenum name="secure" desc="The encryption to use to connect to
the SMTP server.">tls
<values>
<value>none</value>
<value>tls</value>
<value>ssl</value>
</values>
</configenum>
<configstring name="localhost" required="false" desc="The local hostname
/ domain [localhost]"/>
<configswitch name="auth" desc="Authenticate to SMTP server?">false
Expand Down Expand Up @@ -1916,14 +1924,14 @@
<configstring name="server" desc="Server
address">localhost</configstring>
<configinteger name="port" desc="Server port">143</configinteger>
<configenum name="secure" desc="The encryption to use to connect to
the IMAP server.">tls
<values>
<value>none</value>
<value>tls</value>
<value>ssl</value>
</values>
</configenum>
<configenum name="secure" desc="The encryption to use to connect to the
IMAP server.">tls
<values>
<value>none</value>
<value>tls</value>
<value>ssl</value>
</values>
</configenum>
<configstring name="maildomain" desc="Default
maildomain">example.com</configstring>
<configboolean name="cache_folders" desc="Cache IMAP folders?"
Expand Down

0 comments on commit 9e6eaf5

Please sign in to comment.