From 9d491a656952831829f1f4033a534952dd61cc74 Mon Sep 17 00:00:00 2001 From: stan Date: Wed, 15 Jan 2003 15:48:18 +0000 Subject: [PATCH] Fixed typo. git-svn-id: http://svn.zoneminder.com/svn/zm/trunk@340 e3e1d417-86f3-4887-817a-d78f3d33393f --- zmconfig.pl.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zmconfig.pl.in b/zmconfig.pl.in index b7ae885ee..4df79e2e4 100755 --- a/zmconfig.pl.in +++ b/zmconfig.pl.in @@ -434,7 +434,7 @@ my @options = default => "sendmail", description => "The method your machine uses to send email", requires => [ { name => "ZM_OPT_EMAIL", value => "yes" }, { name => "ZM_OPT_MESSAGE", value => "yes" } ], - help => "ZoneMinder needs to know how to send you the notification emails or messages. This option tell it which method to use, generally sendmail will work if configured correctly on your machine, otherwise choose smtp and then give your mail host address in the next option.". + help => "ZoneMinder needs to know how to send you the notification emails or messages. This option tell it which method to use, generally sendmail will work if configured correctly on your machine, otherwise choose smtp and then give your mail host address in the next option.", type => { hint => 'sendmail|smtp', parse => sub { return( int($_[0] =~ /^(se|sm)/i ), $1 =~ /^se/ ? 'sendmail' : 'smtp' ) } }, }, {