The following issue has been RESOLVED. ====================================================================== http://www.dbmail.org/mantis/view.php?id=563 ====================================================================== Reported By: Tarick Assigned To: paul ====================================================================== Project: DBMail Issue ID: 563 Category: Database layer Reproducibility: always Severity: minor Priority: normal Status: resolved target: Resolution: fixed Fixed in Version: 2.3.0 ====================================================================== Date Submitted: 05-Apr-07 14:14 CEST Last Modified: 30-Sep-07 15:41 CEST ====================================================================== Summary: Overall mailbox name (INBOX + subfolders) is limited to approx. 100 characters Description: CREATE TABLE dbmail_mailboxes ( mailbox_idnr INT8 DEFAULT nextval('dbmail_mailbox_idnr_seq'), owner_idnr INT8 REFERENCES dbmail_users(user_idnr) ON DELETE CASCADE ON UPDATE CASCADE, name VARCHAR(100) NOT NULL, ...... )
Is there any reason for such limit? Can we change initial db structure without some incompatibility with dbmail in future? ====================================================================== ---------------------------------------------------------------------- aaron - 07-Apr-07 19:59 ---------------------------------------------------------------------- In dbmailtypes.h, just change this line to match whatever longer length you allow in the database: #define IMAP_MAX_MAILBOX_NAMELEN 100 ---------------------------------------------------------------------- paul - 30-Sep-07 15:41 ---------------------------------------------------------------------- I've increate the maximum length for mailbox names to 255 Issue History Date Modified Username Field Change ====================================================================== 05-Apr-07 14:14 Tarick New Issue 05-Apr-07 14:26 LordVan Issue Monitored: LordVan 07-Apr-07 19:59 aaron Note Added: 0002015 07-Apr-07 20:00 aaron Status new => acknowledged 30-Sep-07 15:41 paul Note Added: 0002391 30-Sep-07 15:41 paul Assigned To => paul 30-Sep-07 15:41 paul Status acknowledged => resolved 30-Sep-07 15:41 paul Resolution open => fixed 30-Sep-07 15:41 paul Fixed in Version => 2.3.0 ====================================================================== _______________________________________________ Dbmail-dev mailing list [email protected] http://twister.fastxs.net/mailman/listinfo/dbmail-dev
