Fix some plugins' code indentation.
authorwwp <wwp@free.fr>
Thu, 3 May 2018 08:44:02 +0000 (10:44 +0200)
committerwwp <wwp@free.fr>
Thu, 3 May 2018 08:44:02 +0000 (10:44 +0200)
src/plugins/clamd/clamav_plugin.h
src/plugins/spamassassin/spamassassin.c
src/plugins/spamassassin/spamassassin_gtk.c

index d68782a3c86fe4c603232da61aac47454d6e1b98..d6c6285eec1186e779da809e249bcccbb68f9aea 100644 (file)
@@ -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);
index c33307b96ecb10c412f63b80168493518e67ed99..e664adb9011a162ca863310dcd441137cb1224da 100644 (file)
@@ -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)
index 3cc56d600ba3325a42d2a4e74028cbc43e15cad9..b88a332938f94dde209f626aea007d4ef8bf0654 100644 (file)
@@ -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
 };