aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrhatto <rhatto>2006-10-13 19:35:32 +0000
committerrhatto <rhatto>2006-10-13 19:35:32 +0000
commit462f9feb65aff339db9299a9473916478ad25034 (patch)
tree07fe2bf4ac812a698d13fff1b37af1d776c23cd2
parentbe236f42e4d14fbe7f72ef34819402a1c12be65e (diff)
downloadfirma-462f9feb65aff339db9299a9473916478ad25034.tar.gz
firma-462f9feb65aff339db9299a9473916478ad25034.tar.bz2
changed some formating
-rwxr-xr-xfirma30
1 files changed, 18 insertions, 12 deletions
diff --git a/firma b/firma
index 46364d8..86514b9 100755
--- a/firma
+++ b/firma
@@ -2072,24 +2072,30 @@ function SourceListConfig {
REQUIRE_SIGNATURE="`EvalConfigParameter $LIST_CONFIG_FILE REQUIRE_SIGNATURE`"
[ "$1" == "help" ] && echo -e "\tDELIVERY_RANDOMIZATION= if non-zero, set a random delay between 0 and N seconds
-\t between each messsage delivery; if you run firma with a TLS-enabled MTA and mostly of the
-\t list messages are sent to others TLS-enabled MTAs, then this option will make harder to a
-\t sniffer detect the traffic of you mailing list, specially if your MTA already sends a lot
-\t of messages or if you're going to have a lot of encrypted mailing lists, all randomizing
-\t its delivery." || \
+\t between each messsage delivery; if you run firma with
+\t a TLS-enabled MTA and mostly of the list messages are
+\t sent to others TLS-enabled MTAs, then this option will
+\t make harder to a sniffer detect the traffic of you mailing
+\t list, specially if your MTA already sends a lot of messages
+\t or if you're going to have a lot of encrypted mailing lists,
+\t all randomizing its delivery." || \
DELIVERY_RANDOMIZATION="`EvalConfigParameter $LIST_CONFIG_FILE DELIVERY_RANDOMIZATION`"
- [ "$1" == "help" ] && echo -e "\tREPLAY_PROTECTION= when set to \"yes\", stores sha1sums of the last REPLAY_COUNT
-\t received messages; then, if some message with an already stored sha1sum, then its bounced back
-\t to the sender and considered as an attempt of replay attack." || \
+ [ "$1" == "help" ] && echo -e "\tREPLAY_PROTECTION= when set to \"yes\", stores sha1sums
+\t of the last REPLAY_COUNT received messages; then,
+\t if some message with an already stored sha1sum, then
+\t its bounced back to the sender and considered as an attempt
+\t of replay attack." || \
REPLAY_PROTECTION="`EvalConfigParameter $LIST_CONFIG_FILE REPLAY_PROTECTION`"
- [ "$1" == "help" ] && echo -e "\tREPLAY_COUNT= number of messages to store sha1sums; defaults to 10 and only used
-\t when REPLAY_PROTECTION is set to \"yes\"." || \
+ [ "$1" == "help" ] && echo -e "\tREPLAY_COUNT= number of messages to store sha1sums;
+\t defaults to 10 and only used when
+\t REPLAY_PROTECTION is set to \"yes\"." || \
REPLAY_COUNT="`EvalConfigParameter $LIST_CONFIG_FILE REPLAY_COUNT`"
- [ "$1" == "help" ] && echo -e "\tREPLAY_FILE= file to store sha1sums of messages; only used when REPLAY_PROTECTION
-\t is set to \"yes\"; defaults to $REPLAY_DEFAULT_FILE" || \
+ [ "$1" == "help" ] && echo -e "\tREPLAY_FILE= file to store sha1sums of messages;
+\t only used when REPLAY_PROTECTION is set to \"yes\";
+\t defaults to $REPLAY_DEFAULT_FILE." || \
REPLAY_FILE="`EvalConfigParameter $LIST_CONFIG_FILE REPLAY_FILE`"
}