summaryrefslogtreecommitdiffstats
path: root/examples/qtmail/app/emailclient.cpp
Commit message (Collapse)AuthorAgeFilesLines
...
* When changing from offline->online state send all queued mail.Don Sanders2010-07-261-2/+19
| | | | When offline don't update visible messages flags.
* In example client make exportPendingChanges more robust so it canDon Sanders2010-07-261-5/+5
| | | | handle exportUpdates action returning immediately.
* In online mode propagate changes to server immediately.Don Sanders2010-07-251-0/+6
| | | | | | In offline mode queue them up. Either way perform common operations disconnectedly.
* Add Work Offline mode.Don Sanders2010-07-251-2/+70
| | | | | Still need to make network actions use this to export updates when online.
* Fix a bug in qtmail where the user would be prompted with2010W29Don Sanders2010-07-231-33/+21
| | | | | | | | "Messages was previously interrupted while composing a message" whenever the current virtual desktop was changed. Also fix a bug in qtmail, while composing File->quit wasn't saving the message being composed in drafts.
* Don't delete messages in folder when disabling synchronizationEric Springer2010-07-211-7/+0
|
* Krazy code cleanupEric Springer2010-07-211-3/+3
| | | | Fix issues suggested by KDE's code checking tool "Krazy"
* Merge commit 'refs/merge-requests/1' of ↵Don Sanders2010-07-201-6/+14
|\ | | | | | | | | | | | | git://gitorious.org/qt-labs/messagingframework into integration Conflicts: examples/qtmail/app/emailclient.cpp
| * Double clicking is now required to open the draft edit window.Kimmo Kotajärvi2010-05-181-5/+13
| |
| * Update message read view when draft selected in addition to opening the edit ↵Kimmo Kotajärvi2010-05-181-6/+5
| | | | | | | | window.
* | Make serverobserver a standalone exampleEric Springer2010-07-201-12/+0
| |
* | Remove accidentally commited debug from QtMail exampleEric Springer2010-07-191-10/+0
| |
* | Allow delayed/lazy loading of custom fields in QMailMessageMetaDataEric Springer2010-07-191-0/+9
| | | | | | | | Fix for QT-SOL 137
* | Use QMailDisconnected where appropriate.Don Sanders2010-07-181-167/+18
| |
* | Rename some user visible strings from get mail to synchronize.Don Sanders2010-07-151-4/+4
| | | | | | | | | | Because disconnected operations are being performed as well as getting mail.
* | Disable disconnected copy, hasn't been tested well enough for prime time.Don Sanders2010-07-141-1/+14
| | | | | | | | | | | | Update retrieveMessageList to take into account disconnected moves. Update QMailFolder::PartialContent calculation to take into account disconnected moves.
* | Remove inadvertently commited debug stuffEric Springer2010-07-121-2/+0
| |
* | Don't show messages in the local trash as being in the outbox, andDon Sanders2010-07-091-1/+1
| | | | | | | | | | | | don't try and send them. (Even if they are also marked as being in the outbox).
* | Don't allow copying of partially downloaded messages.Don Sanders2010-07-081-0/+16
| | | | | | | | | | | | Too dangerous, IMAP doesn't support it. Not an ideal solution, but better than nothing.
* | Fix for QtMail not updating statusbar after action completedEric Springer2010-07-051-1/+1
| |
* | Trigger flag update of visible messages after get all mail actionDon Sanders2010-07-041-0/+1
| | | | | | | | | | | | is finished and no accounts are left to check. Reduce minimum time between flag refrehes from 15 seconds to 7 seconds.
* | When sending of a message failsDon Sanders2010-07-041-27/+20
| | | | | | | | | | | | | | | | | | A) leave it in the outbox and continue sending other messages in the outbox. B) emit a messagesFailedTransmitted signal. API change QMailTransmitAction has new messagesFailedTransmitted signal. Task: NB#177952 NB#153703
* | Adding QMailMessageObserver, a way of monitoring actionsEric Springer2010-07-021-0/+15
| | | | | | | | | | BIG WARNING: This merely a demo. The entire API of it is about to (drastically) change, and will be in no way compatible.
* | Fixes: Create inbox folder for POP accounts when collecting mail.Don Sanders2010-07-011-12/+0
| | | | | | | | | | | | | | Task: NB#171448 Details: Remove now redundant QMailAccount::PartialContent flag, and some other redundant code.
* | Fixes: retrieveMessageList retrieving all mails for pop accounts instead ↵Don Sanders2010-07-011-0/+15
| | | | | | | | | | | | | | | | of just minimum. Task: QTSOL-162 Details: Also fixed a few problems with getMoreMessages in qtmail UI, and added some missing doc. Required adding a QMailAccount::partialContent flag.
* | Fix a bug with 'get more messages' not being shown after clearingDon Sanders2010-06-301-12/+1
| | | | | | | | the quick search bar.
* | Update license files, so they are the same as Qt.Don Sanders2010-06-291-16/+16
| | | | | | | | | | | | | | | | Specifically remove out dated "or the Beta Release License Agreement" text. Remove redundant GPL paragaph. Update copyright to 2010.
* | Enable disconnected copy/move on all foldersAleksW2010-06-251-54/+55
| |
* | Standard folders disconnected copy/move.AleksW2010-06-251-26/+186
| |
* | Fixes: Set ForwardFlag when forwarding a message part usingDon Sanders2010-06-211-0/+1
| | | | | | | | | | | | | | | | forward w/o download, otherwise service actions complain about no flags to set. Perhaps service actions should just succeed silently rather than complain if they have nothing to do.
* | Fixes: Too many messages retrieved when get more messages is used in client,Don Sanders2010-06-171-2/+1
| | | | | | | | and messages have been deleted on the server with another client.
* | Fixes: Retrieving an attachment causes full mail check,Don Sanders2010-06-071-4/+4
| | | | | | | | | | | | | | Task: QTSOL-154 Details: In the EmaiClient class the retrievalCompleted slot checks the mailAccountId member variable, and if it's valid assumes that a mail check is in progress and advances from the exportUpdates to retrieveFolderlist stage of full account mail checking. So set mailAccountId to an invalid id when retrieving attachments and performing other types of non full account mail checking retrieval. I got an unable to allocate qmailserviceaction error in qtmail before making this change. Not sure if it's difficult to reproduce or if it's fixed with this change.
* | Supress compile warning in QtMailespringe2010-06-031-0/+1
|/
* QTSOL-130. Replace another serviceaction flagMessages call with a call to ↵AleksW2010-05-041-4/+17
| | | | qmailstore for "move to trash" operation.
* QTSOL-130. Replace serviceaction calls with mailstore calls for message flag ↵AleksW2010-05-041-4/+9
| | | | changes.
* Create QMailStorageAction items as needed to remove the "unable to" warning. ↵AleksW2010-04-281-17/+32
| | | | This is a temporary measure to make qtmail more immediately usable for testing purposes.
* Connect activity icon to status monitor instead of discrete service actionsAleksW2010-04-271-23/+10
|
* Remove dead codeAleksW2010-04-071-2/+2
|
* Remove superfluous directoryAleksW2010-04-071-1/+1
|
* Restructure source layout grouping qtmail example files together, separate ↵AleksW2010-04-071-0/+2765
from QMF.