Skip to content

Commit

Permalink
mcom: automime can be empty
Browse files Browse the repository at this point in the history
  • Loading branch information
leahneukirchen committed Jan 12, 2019
1 parent d6c2470 commit 30fba2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mcom
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ while :; do
esac

if [ -e $draftmime ]; then
if [ $draft -ot $draftmime ] || [ "$automime" -eq 1 ]; then
if [ $draft -ot $draftmime ] || [ "$automime" = 1 ]; then
stampdate $draftmime
if $sendmail <$draftmime; then
if [ "$outbox" ]; then
Expand Down

0 comments on commit 30fba2b

Please sign in to comment.