summaryrefslogtreecommitdiff
path: root/noncore/net/mail/libmailwrapper/smtpwrapper.cpp
AgeCommit message (Collapse)AuthorFilesLines
2004-04-04someone forget to include opie2/odebug while switching from qDebugalwin1-0/+1
to odebug ;)
2004-04-04convert to Opie Debugging Frameworkmickeyl1-15/+15
2004-03-14Convert net to ODP and QtAUXzecke1-1/+2
2004-03-12some more smart-pointersalwin1-10/+8
some bugfixes some renaming of internals
2004-03-12start usage of smart-pointersalwin1-1/+1
2004-03-08some required code restructuring in preparation of new featuresalwin1-454/+10
2004-03-08when reply to a mail, a in-reply-to header will generated.alwin1-1/+28
ToDo: setup the reference-list-header.
2004-03-02fix includeschicken1-2/+0
2004-03-02applied the patch generated by the optimize_connect script fromalwin1-1/+1
TT.
2004-02-13interface changesalwin1-71/+85
2004-02-12TLS support for SMTPalwin1-3/+52
2004-01-12generating clean failuremessagesalwin1-41/+67
bugfix - smtp without login was resolved as wrong when sending enqueued mails login will asked when starting flush not on every mail.
2004-01-11when failure sending mails them will be stored into a local folderalwin1-1/+23
and a message box appears.
2004-01-08more smtp settingsharlekin1-136/+172
2004-01-08MH storage implementedalwin1-1/+2
local folders will be type of MH not MBOX
2004-01-07download mail mostly finishedalwin1-6/+4
accounts can be switched "offline"
2004-01-06some more debug infosalwin1-13/+11
memleaks fixed
2004-01-05bugfix in imapwrapperalwin1-10/+7
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-3/+3
2004-01-04adapt build system to lib etc and get it buildharlekin1-1/+3
2004-01-03communicate outgoing mails status to the QPE/Pim channel ( to which the ↵harlekin1-4/+26
todayplugin listens for example)
2003-12-28reduced to the max...alwin1-35/+19
- 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-88/+26
- 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-25fixed an address parsing bugalwin1-4/+35
2003-12-24hopefully fixed some memleaks and some not initialized varsalwin1-10/+23
2003-12-24only show the mail queue flushed dialogbox when successfull -)harlekin1-20/+27
2003-12-24ah, ok. I found the trick or better I found what I forgot :)alwin1-3/+12
Means: When sending mail a progress dialog comes up.
2003-12-24tried to implement a progress dialog when sending mails. It doesn't workalwin1-1/+15
(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-132/+201
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-10/+51
TODO: flush queue, cleanup SMTP code, select smtp-account if more than one when flush the outgoing queue
2003-12-21- MailWrapper -> SMTPwrapperalwin1-0/+604
- 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.