1 2 3 4 5 6 7 8 9 10 11 12 13 14
|
Description: Adds support for the imaps protocol.
Bug: #429865
--- a/build.xml 2007-06-27 19:51:57.000000000 +0200
+++ b/build.xml 2007-06-27 19:53:53.000000000 +0200
@@ -127,6 +127,8 @@
<target name='imap.ok' unless='disable-imap'>
<echo file='${providers}' append='true'>protocol=imap; type=store; class=gnu.mail.providers.imap.IMAPStore; vendor=dog@gnu.org;
</echo>
+ <echo file='${providers}' append='true'>protocol=imaps; type=store; class=gnu.mail.providers.imap.IMAPStore; vendor=dog@gnu.org;
+</echo>
</target>
<target name='pop3.ok' unless='disable-pop3'>
|