From 17d7678e2dbd641cf6f2a6950709cfc2ad9ea129 Mon Sep 17 00:00:00 2001 From: Christian Hesse Date: Tue, 16 Feb 2021 16:04:18 +0100 Subject: global-functions: drop support for attachment in notification e-mail --- global-functions | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'global-functions') diff --git a/global-functions b/global-functions index 851e632..6434307 100644 --- a/global-functions +++ b/global-functions @@ -773,7 +773,6 @@ :local Subject [ :tostr $1 ]; :local Message [ :tostr $2 ]; :local Link [ :tostr $3 ]; - :local Attach [ :tostr $4 ]; :global Identity; :global EmailGeneralTo; @@ -792,8 +791,7 @@ subject=("[" . $Identity . "] " . $Subject) \ body=($Message . \ [ $IfThenElse ([ :len $Link ] > 0) ("\n\n" . $Link) "" ] . \ - [ $IfThenElse ([ :len $Signature ] > 0) ("\n-- \n" . $Signature) "" ]) \ - file=$Attach; + [ $IfThenElse ([ :len $Signature ] > 0) ("\n-- \n" . $Signature) "" ]); } on-error={ $LogPrintExit warning ("Failed sending notification mail!") false; } @@ -805,13 +803,12 @@ :local Subject [ :tostr $1 ]; :local Message [ :tostr $2 ]; :local Link [ :tostr $3 ]; - :local Attach [ :tostr $4 ]; - :local Silent [ :tostr $5 ]; + :local Silent [ :tostr $4 ]; :global SendEMail; :global SendTelegram; - $SendEMail $Subject $Message $Link $Attach; + $SendEMail $Subject $Message $Link; $SendTelegram $Subject $Message $Link $Silent; } -- cgit v1.2.3-54-g00ecf