XCOURIEROUTBOX indicates option that can create duplicate messages.
authortokul <tokul@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Tue, 29 Aug 2006 18:30:09 +0000 (18:30 +0000)
committertokul <tokul@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Tue, 29 Aug 2006 18:30:09 +0000 (18:30 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@11655 7612ce4b-ef26-0410-bec9-ea0150e637f0

ChangeLog
src/configtest.php

index 918053c21ff4e5dcdb1c00d84544cedade85b95c..c303cea1d108e6e7d0a73287ac8c2022c8fabb69 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -133,6 +133,7 @@ Version 1.5.2 - CVS
     (#1543573).
   - Provide View Unsafe Images link on viewing a text/html attachment.
   - Added APOP, TLS and STLS support to mail_fetch plugin (#575299).
+  - Added Courier IMAP OUTBOX check to configtest utility.
 
 Version 1.5.1 (branched on 2006-02-12)
 --------------------------------------
index 95c6065854c0cbe783a6db9602ec1b8512ee1c4c..47dc461b8c88f4526a29e6da6ae0ec58f0dff5cf 100644 (file)
@@ -516,6 +516,15 @@ if (stristr($capline, 'XMAGICTRASH') !== false) {
     do_err($magic_trash,false);
 }
 
+/* add warning about IMAP delivery */
+if (stristr($capline, 'XCOURIEROUTBOX') !== false) {
+    $courier_outbox = 'OUTBOX setting is enabled in your Courier imapd '
+        .'configuration. SquirrelMail uses standard SMTP protocol or sendmail '
+        .'binary to send emails. Courier IMAP delivery method is not supported'
+        .' and can create duplicate email messages.';
+    do_err($courier_outbox,false);
+}
+
 /** OK, close connection */
 fputs($stream, "A004 LOGOUT\r\n");
 fclose($stream);