summaryrefslogtreecommitdiff
path: root/noncore/net/mail/libmailwrapper/smtpwrapper.h
AgeCommit message (Collapse)AuthorFilesLines
2004-03-14Convert net to ODP and QtAUXzecke1-2/+2
2004-03-12some more smart-pointersalwin1-3/+3
some bugfixes some renaming of internals
2004-03-12start usage of smart-pointersalwin1-1/+3
2004-03-08some required code restructuring in preparation of new featuresalwin1-27/+5
2004-02-13interface changesalwin1-10/+17
2004-02-12TLS support for SMTPalwin1-5/+8
2004-01-11when failure sending mails them will be stored into a local folderalwin1-0/+1
and a message box appears.
2004-01-07download mail mostly finishedalwin1-2/+2
accounts can be switched "offline"
2004-01-05bugfix in imapwrapperalwin1-2/+2
storemail for all possible mail-accounts raw body fetch in all wrappers unified public interface dialog for selecting a target mailbox started
2004-01-04some cleanupsalwin1-0/+1
2004-01-03communicate outgoing mails status to the QPE/Pim channel ( to which the ↵harlekin1-0/+10
todayplugin listens for example)
2003-12-28reduced to the max...alwin1-2/+1
- from address isn't setup any longer within the smtp account (it makes realy no sense, a smtp account describes the connection to a smtp server, not the identity of the sender) - from address is taken from the personal info of the addressbook (thats why this info exists). Of course the user can change it when sending an email. - user can select a from with a selection of the mails given in their personal infos. - in addresspicker: use "<Firstname> <Lastname>" instead of "Filename" - settings ui: switched of the part within the smtp accounts describing the identitiy of user ToDo: a dialog setting up a default signature
2003-12-25- some memleaksalwin1-3/+0
- content generation will use the libetpan code und not own dumping to a tmpfile. - bugfix while creating mails with attachments (message itself could be corrupted) - textpart will always encoded quoted-printable
2003-12-24only show the mail queue flushed dialogbox when successfull -)harlekin1-1/+1
2003-12-24tried to implement a progress dialog when sending mails. It doesn't workalwin1-1/+3
(dialog will show but makes no updates, when using qApp->progressEvents(x) dialog hides) I don't know why - and I giving up for the moment.
2003-12-23UFFFFFFFalwin1-5/+13
flushing send queue mostly finished. Attention: To get it work you must apply the patches from the libetpan/ directory! ToDo: - when flush then select a smtp-account to use for when there are more than one smtp accounts. (opiemail.cpp) This moment I just use the first one. - the special funs in mboxwrapper (deleting range of mail, storing a message to a folder) should go to all mailbox wrappers, means into the global interface of them. - cleanup/review the code of the smtp-wrapper.
2003-12-22- storing mails send in outgoing (if queued) or sent (if sent) folderalwin1-2/+4
TODO: flush queue, cleanup SMTP code, select smtp-account if more than one when flush the outgoing queue
2003-12-21- MailWrapper -> SMTPwrapperalwin1-0/+53
- made dependies from libetpan includes somewhat cleaner - removed standalone static funs and moved to class based static methods - arguements in SMTPwrapper now always const references and not deep copies TODO: clean up GOTO statements, change QList to QValueList for a better handling of "const" arguments, store mails in queue and/or a local "Sent" folder.