diff options
author | rhatto <rhatto> | 2006-10-12 00:25:55 +0000 |
---|---|---|
committer | rhatto <rhatto> | 2006-10-12 00:25:55 +0000 |
commit | d16928130eacfde8304a8745470756ce9fa06eab (patch) | |
tree | 2f65cf8436fb80945587b631699ee345c89d7599 | |
parent | 5c8b33680d6ae726a5bd26042ae36e1796af9847 (diff) | |
download | firma-d16928130eacfde8304a8745470756ce9fa06eab.tar.gz firma-d16928130eacfde8304a8745470756ce9fa06eab.tar.bz2 |
EmailListAdministration fix
-rwxr-xr-x | firma | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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" ] && [ grep -q -v -e "^Content" ] ; then + if [ ! -z "$command" ] && echo $command | grep -q -v -e "^Content"; then AdminLog "Command> $command" ListAdministration $command fi |