Changeset 0864a52 for protocols/msn


Ignore:
Timestamp:
2015-05-28T05:26:30Z (9 years ago)
Author:
dequis <dx@…>
Branches:
master
Children:
b38f655
Parents:
faeb521
git-author:
dequis <dx@…> (08-05-15 04:16:37)
git-committer:
dequis <dx@…> (28-05-15 05:26:30)
Message:

imcb_notify_email: change parameters to take a format string

Saves some messing with g_strdup_printf for the callers, and
flags/sent_at weren't used anyway.

Also check if the mail_notifications setting is enabled

File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/msn/ns.c

    rfaeb521 r0864a52  
    394394
    395395                                        if (inbox && folders) {
    396                                                 char *msg = g_strdup_printf(
     396                                                imcb_notify_email(ic,
    397397                                                        "INBOX contains %s new messages, plus %s messages in other folders.", inbox,
    398398                                                        folders);
    399                                                 imcb_notify_email(ic, set_getstr(&ic->acc->set, "notify_handle"), msg, 0, 0);
    400                                                 g_free(msg);
    401399                                        }
    402400
     
    410408
    411409                                        if (from && fromname) {
    412                                                 char *msg = g_strdup_printf("Received an e-mail message from %s <%s>.",
    413                                                                             fromname, from);
    414                                                 imcb_notify_email(ic, set_getstr(&ic->acc->set, "notify_handle"), msg, 0, 0);
    415                                                 g_free(msg);
     410                                                imcb_notify_email(ic, "Received an e-mail message from %s <%s>.", fromname, from);
    416411                                        }
    417412
Note: See TracChangeset for help on using the changeset viewer.