diff options
author | luis <luis> | 2007-08-08 02:55:49 +0000 |
---|---|---|
committer | luis <luis> | 2007-08-08 02:55:49 +0000 |
commit | 2004c0f00c4666b91d27990fb20739f478f2ff3f (patch) | |
tree | 44bff5588116b49e2ea88d5766e2b7e1c663e257 | |
parent | 4873c31224099b484041ca673945d0a2f97a043a (diff) | |
download | firma-2004c0f00c4666b91d27990fb20739f478f2ff3f.tar.gz firma-2004c0f00c4666b91d27990fb20739f478f2ff3f.tar.bz2 |
REPLIES_SHOULD_GO_TO_LIST wasn`t being disabled if set to zero. Fixed
-rwxr-xr-x | firma | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -661,7 +661,7 @@ function EditListMessageHeaders { fi # insert/replace the Reply-To header - if [[ -n "$REPLIES_SHOULD_GO_TO_LIST" ]]; then + if [[ "$REPLIES_SHOULD_GO_TO_LIST" == "1" ]]; then if ! echo "$MESSAGE_HEADERS" | \ grep -iq '^Reply-To:'; then |