talons

Fork of Claws Mail https://www.claws-mail
Log | Files | Refs | README | LICENSE

commit 1714c7b4b559e9f6cb677fc76c21cb901aaf3342
parent 3852d827e74911d2cab5dbcfa8542ceec2b72a27
Author: wwp <wwp@free.fr>
Date:   Thu,  3 May 2018 10:44:02 +0200

Fix some plugins' code indentation.

Diffstat:
Msrc/plugins/clamd/clamav_plugin.h | 4++--
Msrc/plugins/spamassassin/spamassassin.c | 20++++++++++----------
Msrc/plugins/spamassassin/spamassassin_gtk.c | 8++++----
3 files changed, 16 insertions(+), 16 deletions(-)

diff --git a/src/plugins/clamd/clamav_plugin.h b/src/plugins/clamd/clamav_plugin.h @@ -36,9 +36,9 @@ struct _ClamAvConfig gchar *clamav_save_folder; gboolean clamd_config_type; gchar *clamd_host; - int clamd_port; + int clamd_port; gchar *clamd_config_folder; - gboolean alert_ack; + gboolean alert_ack; }; ClamAvConfig *clamav_get_config (void); diff --git a/src/plugins/spamassassin/spamassassin.c b/src/plugins/spamassassin/spamassassin.c @@ -609,16 +609,16 @@ const gchar *plugin_name(void) const gchar *plugin_desc(void) { return _("This plugin can check all messages that are received from an " - "IMAP, LOCAL or POP account for spam using a SpamAssassin " - "server. You will need a SpamAssassin Server (spamd) running " - "somewhere.\n" - "\n" - "It can also be used for marking messages as Ham or Spam.\n" - "\n" - "When a message is identified as spam it can be deleted or " - "saved in a specially designated folder.\n" - "\n" - "Options can be found in /Configuration/Preferences/Plugins/SpamAssassin"); + "IMAP, LOCAL or POP account for spam using a SpamAssassin " + "server. You will need a SpamAssassin Server (spamd) running " + "somewhere.\n" + "\n" + "It can also be used for marking messages as Ham or Spam.\n" + "\n" + "When a message is identified as spam it can be deleted or " + "saved in a specially designated folder.\n" + "\n" + "Options can be found in /Configuration/Preferences/Plugins/SpamAssassin"); } const gchar *plugin_type(void) diff --git a/src/plugins/spamassassin/spamassassin_gtk.c b/src/plugins/spamassassin/spamassassin_gtk.c @@ -87,11 +87,11 @@ enum { }; struct Transport transports[] = { - /*{ N_("Disabled"), SPAMASSASSIN_DISABLED, PAGE_DISABLED, 0 },*/ - { N_("Localhost"), SPAMASSASSIN_TRANSPORT_LOCALHOST, PAGE_NETWORK, 0 }, - { N_("TCP"), SPAMASSASSIN_TRANSPORT_TCP, PAGE_NETWORK, NETWORK_HOSTNAME }, + /*{ N_("Disabled"), SPAMASSASSIN_DISABLED, PAGE_DISABLED, 0 },*/ + { N_("Localhost"), SPAMASSASSIN_TRANSPORT_LOCALHOST, PAGE_NETWORK, 0 }, + { N_("TCP"), SPAMASSASSIN_TRANSPORT_TCP, PAGE_NETWORK, NETWORK_HOSTNAME }, #ifndef G_OS_WIN32 - { N_("Unix Socket"), SPAMASSASSIN_TRANSPORT_UNIX, PAGE_UNIX, 0 }, + { N_("Unix Socket"), SPAMASSASSIN_TRANSPORT_UNIX, PAGE_UNIX, 0 }, #endif };