`queue` VARCHAR( 3 ) NOT NULL DEFAULT 'yes', `del_message` VARCHAR( 3 ) NOT NULL DEFAULT 'yes'
Priority high (really need to be fixed):
[fixed] -txt/php-attachments arent still recognized [/fixed]
[fixed]- all other attachments missing the filesize in the messageview [/fixed]
[fixed]- every message is categorized as multipart (text and html) even if it is only send as text or only as html [/fixed]
- mail with (not recognized) txt-attachment: html-messagetext isnt shown when editing message after queing (in Tinmce-Editor)
Priority middle (should be done):
- mail with zip-attachment: the texteditor (tinymce) shows the html-text. When send only with txt nothing is shown.
[fixed]- An option to delete settings rather than leaving the entries empty in the DB [/fixed]
[fixed=only one emailadress per list allowed]- when two lists have same mail-adress Handling now is: message is only send to the first list.[/fixed]
[fixed]-- Better: Either mail will be send to both lists or dont allow that two lists have same address.[/fixed]
Priority low (would be nice, but not necessary):
[fixed]- On clicking "Apply Settings" a message "settings have been saved" on the next screen.[/fixed]
[fixed]- A mail2list-settings-overview-page.[/fixed]
[fixed]- Status: "All 2 mails sent to listadress@mydomain.com
have been forwarded to <listname>." (So changing the text "phplist" to the corresponding listname)[/fixed]
[fixed]- better line breaks on "Mail to List Processing page" so that the different calls for each list are better separated. Perhaps a simple HR would do. [/fixed]
[NOT FIXABLE WITHOUT HARDCODING][* make images available inline (not linked to att dir)] [/NOT FIXABLE]
This can't be done because we can't write new headers for the email.
There has to be a lot of hardcoding in the main phplist code before this can be done.
I'll try to look at it when i have a lot of time.
[fixed][* ability to store messages without queuing them] [/fixed]
[in progress]- option for leaving messages on pop3. option for only fetch new mails. [/in progress]
-- -------------------------------------------
-- New SQL to input
-- Original config will be deleted!!!!!!
-- -------------------------------------------
ALTER TABLE `phplist_list` DROP `toemail` ,
DROP `template` ,
DROP `footer` ;
-- -------------------------------------------
-- -------------------------------------------
CREATE TABLE `phplist_mail2list_list` (`listid` INT( 10 ) NOT NULL PRIMARY KEY, `toemail` VARCHAR(255) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL, `template` INT( 10 ) NOT NULL , `footer` TEXT NOT NULL) ENGINE = innodb;
-- -------------------------------------------
-- -------------------------------------------
CREATE TABLE `phplist_mail2list_allowsend` (`id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY ,`email` VARCHAR( 255 ) NOT NULL ,`name` VARCHAR( 255 ) NOT NULL ,`sent` INT( 50 ) NOT NULL DEFAULT '0') ENGINE = innodb;
-- -------------------------------------------
-- -------------------------------------------
CREATE TABLE `phplist_mail2list_popaccounts` (`listid` INT( 10 ) NOT NULL PRIMARY KEY, `host` VARCHAR( 255 ) NOT NULL ,`port` VARCHAR( 255 ) NOT NULL ,`login` VARCHAR( 50 ) NOT NULL , `pass` VARCHAR( 50 ) NOT NULL, `mail_status` VARCHAR( 10 ) NOT NULL DEFAULT '0/0', `queue` VARCHAR( 3 ) NOT NULL DEFAULT 'yes', `del_message` VARCHAR( 3 ) NOT NULL DEFAULT 'yes' ) ENGINE = innodb;
-- -------------------------------------------
-- -------------------------------------------
DROP TABLE `phplist_allowsend`, `phplist_popaccounts`;
-- -------------------------------------------
-- Database: `phplist`
--
-- --------------------------------------------------------
--
-- Tabel structuur voor tabel `phplist_mail2list_allowsend`
--
CREATE TABLE `phplist_mail2list_allowsend` (
`id` int(11) NOT NULL auto_increment,
`email` varchar(255) NOT NULL,
`name` varchar(255) NOT NULL,
`sent` int(50) NOT NULL default '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=3 ;
--
-- Tabel structuur voor tabel `phplist_mail2list_list`
--
CREATE TABLE `phplist_mail2list_list` (
`listid` int(10) NOT NULL,
`toemail` varchar(255) NOT NULL,
`template` int(10) NOT NULL,
`footer` text NOT NULL,
PRIMARY KEY (`listid`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Tabel structuur voor tabel `phplist_mail2list_popaccounts`
--
CREATE TABLE `phplist_mail2list_popaccounts` (
`listid` int(10) NOT NULL,
`host` varchar(255) NOT NULL,
`port` varchar(255) NOT NULL,
`login` varchar(50) NOT NULL,
`pass` varchar(50) NOT NULL,
`mail_status` varchar(10) NOT NULL default '0/0',
`queue` varchar(3) NOT NULL default 'yes',
`del_message` varchar(3) NOT NULL default 'yes',
PRIMARY KEY (`listid`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
Return to Contributions: Plug-ins, Add-ons, Mods
Users browsing this forum: No registered users and 0 guests