diff options
author | luis <luis> | 2007-02-01 14:05:57 +0000 |
---|---|---|
committer | luis <luis> | 2007-02-01 14:05:57 +0000 |
commit | d43ba48a63506b7ce1d71ee7a5b6dae795d3d67b (patch) | |
tree | 7c3ccc38da79f723e37ca28c1755a5901cef4902 | |
parent | fdc2747952c084c97d6beb4dc6ea30d7fa515809 (diff) | |
download | firma-d43ba48a63506b7ce1d71ee7a5b6dae795d3d67b.tar.gz firma-d43ba48a63506b7ce1d71ee7a5b6dae795d3d67b.tar.bz2 |
Small fixes.
-rwxr-xr-x | firma | 20 |
1 files changed, 10 insertions, 10 deletions
@@ -820,10 +820,10 @@ function ProcessMessage { # the anti-replay mechanism detected a repeated message MESSAGE_BODY="\ It was not possible to process this message. This list - is configured to discarded replayed messages as an attack - protection measue. It looks like that your message was - already sent to the list and then it was discarded. - Contact the list administrator if you have any questions." + is configured to discard replayed messages as an attack + protection measure. It looks like your message has been + sent to the list before and so it was discarded. Contact + the list administrator if you have any questions." ComposeAndSendBounceMessage fi @@ -870,8 +870,8 @@ function NewList { local last_char digits_only # UTF-8 is avoided in DETAILS - echo "Firma will ask you some questions before setup your list." - echo "Please dont use UTF-8 characters." + echo "Firma will ask you some questions to setup your list." + echo "Please don't use UTF-8 characters." read -rep " List keyring location: ("$LIST_PATH") " LIST_HOMEDIR LIST_HOMEDIR=${LIST_HOMEDIR:-"$LIST_PATH"} @@ -1530,7 +1530,7 @@ function SubscribeUsers { " elif [[ "$1" == "stdin" ]]; then if [[ "$MODE" == "admin-interactive" ]]; then - echo "Please enter the key material here, finninshing with Ctrl-D sequence..." + echo "Please enter the key material here, finishing with Ctrl-D sequence..." $GPG_NOBATCH --import return_code=$? if [[ "$return_code" == "0" ]]; then @@ -1768,7 +1768,7 @@ function RandomString { function AdminLog { #------------------------------------------------------------- - # check wheter admin is made via command line + # check whether admin is made via command line #+or email and then log a message according to the #+display mode # @@ -2203,7 +2203,7 @@ function ReplayProtectionFlush { if [[ "$REPLAY_PROTECTION" == "yes" ]]; then if [[ -f "$REPLAY_FILE" ]]; then if [[ "$(wc -l $REPLAY_FILE | cut -d " " -f 1)" -gt "$REPLAY_COUNT" ]]; then - sed -ie '1d' $REPLAY_FILE + sed -i -e '1d' $REPLAY_FILE fi else touch $REPLAY_FILE @@ -2397,7 +2397,7 @@ case $# in SYSLOG_PRIORITY=${SYSLOG_PRIORITY:-"user.err"} fi - # and finally check firma.conf parameters and pessmissions + # and finally check firma.conf parameters and permissions if CheckFirmaConfigFile && CheckPermission $FIRMA_CONFIG_FILE; then LIST_NAME="$2" |