Update of /cvsroot/serverfilters
In directory sc8-pr-cvs1:/tmp/cvs-serv24223
Modified Files:
config.php options.php
Log Message:
Added feature to optionally allow filtering to unsubscribed mailboxes.
Index: options.php
===================================================================
RCS file: /cvsroot/serverfilters/options.php,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** options.php 11 Dec 2003 15:17:02 -0000 1.5
--- options.php 11 Dec 2003 15:33:25 -0000 1.6
***************
*** 75,79 ****
}
! $boxes = sqimap_mailbox_list($imapConnection);
if (!$previously_connected)
--- 75,82 ----
}
! if (isset($ALLOW_UNSUBSCRIBED) and $ALLOW_UNSUBSCRIBED)
! $boxes = sqimap_mailbox_list_all ($imapConnection);
! else
! $boxes = sqimap_mailbox_list($imapConnection);
if (!$previously_connected)
|