Rename notification to notification_email

This commit is contained in:
Olivier Ligot
2013-06-12 13:55:14 +02:00
parent 6fbe66ff7b
commit c27f57adf1
9 changed files with 6 additions and 6 deletions

View File

@@ -0,0 +1,34 @@
note
description : "[
NOTIFICATION_MAILER using sendmail as mailtool
]"
author : "$Author$"
date : "$Date$"
revision : "$Revision$"
class
NOTIFICATION_SENDMAIL_MAILER
inherit
NOTIFICATION_EXTERNAL_MAILER
redefine
default_create
end
create
default_create
feature {NONE} -- Initialization
default_create
do
Precursor
make ("/usr/sbin/sendmail", <<"-t">>)
if not is_available then
make ("/usr/bin/sendmail", <<"-t">>)
end
set_stdin_mode (True, "%N.%N%N")
end
end