| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
| |
Due to serviceactions changes.
|
| | |
|
| |
|
|
|
|
|
| |
Don't lose mail if messageserver crashes or is not running
while queueing mail in outbox.
Catch failure and save to outbox using qmailstore.
|
| |
|
|
|
| |
If retrieving messages flags fails, give up, rather than
endlessly retry.
|
| |
|
|
|
|
| |
QApplication must be constructed before QSettings.
Patch from Juha Kurikkala
|
| |
|
|
|
|
| |
Add QMailMessage function to detect calendar invitations.
Use it appropriately in IMAP and POP plugins.
|
| |
|
|
|
|
| |
Eric Springer committed c1b02c7f on May 19, 2011 14:28
Fix qtmail crash when hitting the cancel button
|
| | |
|
| |
|
|
|
|
| |
When sending mail.
Intent is to increase responsiveness of client.
|
| | |
|
| | |
|
| |\ |
|
| | | |
|
| | |\ |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | |
| | |
| | |
| | | |
This reverts commit 24cb8cdd0a79cd973349d31120a541308a8f49d1.
|
| | |/
|/| |
|
| |/
|
|
|
|
| |
handled correctly.
Just a client (qtmail) issue.
|
| |
|
|
|
| |
Alters all message.subject() calls for display to be
message.subject().simplified() to strip tabs, duplicate spaces, etc.
|
| | |
|
| |
|
|
|
|
| |
Add a guard to QList.mid call, seems really strange that the mid function is
unstable when pos is greater than (or equal to?) count of elements in the
list, but this is not the first time I've experience this crash.
|
| | |
|
| |
|
|
|
|
| |
Currently it's getting casted to a null pointer, and invoking the
QString(char *) constructor which is safely handling it -- but this
isn't something we should rely on.
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Taken from QMF merge request #6 by Vitaly Repin:
Current version of the QMF logging subsystem has the following issues:
1) Whenever application is linked against QMF, all the syslog messages are
prefixed with QMF regardless of the application settings.
E.g., Aug 31 00:25:16 vitnote QMF[4959]: [Critical] Test
It makes it harder to identify the application which has printed specific
message to syslog. It also overwrites the previous calls to "openlog" made by
application which is impolite
2) It is not possible to enable/disable logging through syslog in runtime
3) It is not possible to log into file and stderr
4) Output of Q_ASSERT is not logged. In fact, QWarning(), qFatal(), qDebug()
do not go to the log
5) Library installs the SIGHUP handler transparently for the application. It
is bad because application might want to install its own handler for this
signal and it could conflict with the library's logic.
The patch attached for your review fixes the issues above. It also adds the
following possibilities:
- To log into file and stderr, controllable through the configuration file in
runtime
- To create chain of loggers if needed (e.g., output to file and stderr, to
file and syslog etc). Chain of loggers is defined in run-time through
configuration file.
- Configuration file is per application. Not the only file for all the users
of the library.
|
| | |
|
| |
|
|
|
| |
The functionality has moved to QMailDisconnected, and works
after the account has been synchronised with a server.
|
| |
|
|
|
| |
This reverts commit 42871f0102e9f937de88e5bd2ca3f908a88ee12b, as
there are some issues to be discussed before we break ABI.
|
| |
|
|
|
| |
The functionality has moved to QMailDisconnected, and works
after the account has been synchronised with a server.
|
| | |
|
| | |
|
| | |
|
| |
|
|
|
|
| |
Task: QTSOL-168
Details: Child messages weren't being shown, because parent items weren't being opened.
|
| | |
|
| | |
|
| |
|
|
| |
This is done to avoid conflicts with the QPID Management Framework
|
| | |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Library Renames:
libmessageserver -> libqmfmessageserver
libqtopiamail -> libqmf
Directory Changes:
src/libraries/messageserver -> src/libraries/qmfmessageserver
src/libraries/qtopiamail -> src/libraries/qmf
src/plugins/contentmanagers/qtopiamailfile -> qmfstoragemanager
src/plugins/messageservices/qtopiamailfile -> qmfsettings
Class changes:
QtopiamailfileConfigurator -> QmfConfigurator
QtopiamailfileSettings -> QmfSettings
QtopiamailfileServicePlugin -> QmfServicePlugin
QtopiamailfileManager -> QmfStorageManager
There's still a few outstanding changes in the docs / translations
that should be fixed shortly.
|
| | |
|
| |
|
|
|
|
| |
listfilterplugin is an example of using a QMailContentManager to
filter messages. This example moves messages belonging to a
mailing list to a folder of the same name (see: README).
|
| |
|
|
| |
Task: QTSOL-168
|