diff options
author | rhatto <rhatto> | 2006-10-12 00:23:25 +0000 |
---|---|---|
committer | rhatto <rhatto> | 2006-10-12 00:23:25 +0000 |
commit | 5c8b33680d6ae726a5bd26042ae36e1796af9847 (patch) | |
tree | bb4af3c61896be059c37371f89b13b587fb91333 | |
parent | 7a0b85df772b909f48c05e6f5d5911a33c632d82 (diff) | |
download | firma-5c8b33680d6ae726a5bd26042ae36e1796af9847.tar.gz firma-5c8b33680d6ae726a5bd26042ae36e1796af9847.tar.bz2 |
EmailListAdministration ignoring ^Content on messsage body
-rwxr-xr-x | firma | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1725,7 +1725,7 @@ function GetSubscribersInfo { fi done - FixListOwnerShip + FixListOwnership return $? } @@ -1821,7 +1821,7 @@ function EmailListAdministration { #+then, parse and process admin tasks MESSAGE_BODY="\ `echo -e "$DECRYPTED_MESSAGE" | while read command; do - if [ ! -z "$command" ]; then + if [ ! -z "$command" ] && [ grep -q -v -e "^Content" ] ; then AdminLog "Command> $command" ListAdministration $command fi |