summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--plugins/check_smtp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/check_smtp.c b/plugins/check_smtp.c
index 2c03874..2000c62 100644
--- a/plugins/check_smtp.c
+++ b/plugins/check_smtp.c
@@ -48,9 +48,9 @@
48 * even if syntax is illegal (MAIL requires a FROM:<...> argument) 48 * even if syntax is illegal (MAIL requires a FROM:<...> argument)
49 * You can disable sending DUMMYCMD by undefining SMTP_USE_DUMMYCMD. 49 * You can disable sending DUMMYCMD by undefining SMTP_USE_DUMMYCMD.
50 */ 50 */
51#define SMTP_DUMMYCMD "MAIL\n" 51#define SMTP_DUMMYCMD "MAIL\r\n"
52#define SMTP_USE_DUMMYCMD 1 52#define SMTP_USE_DUMMYCMD 1
53#define SMTP_QUIT "QUIT\n" 53#define SMTP_QUIT "QUIT\r\n"
54 54
55int process_arguments (int, char **); 55int process_arguments (int, char **);
56int call_getopt (int, char **); 56int call_getopt (int, char **);