diff options
| -rwxr-xr-x | cron/mailpasswds | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cron/mailpasswds b/cron/mailpasswds index 1d7e6243a..d69ea330c 100755 --- a/cron/mailpasswds +++ b/cron/mailpasswds @@ -55,10 +55,10 @@ def MailAllPasswords(list, users): 'cronpass.txt', {'hostname': list.host_name, 'user' : user, - 'header' : header, - 'table' : string.join(table, '\n'), 'one_list': l, - }, raw=1) + }) + # add this to the end so it doesn't get wrapped/filled + text = text + header + '\n' + string.join(table, '\n') list.SendTextToUser(subject = subj, recipient = user, text = text, |
