diff options
author | Michael Elkins <melkins@tislabs.com> | 2014-06-16 16:05:10 +0000 |
---|---|---|
committer | Michael Elkins <melkins@tislabs.com> | 2014-06-16 16:05:10 +0000 |
commit | 3fad1cd1ec2d346418a05aa88390e5cb069edee8 (patch) | |
tree | b120010654b0cf937fdf32f62b74465354bb21a8 /rpki/gui | |
parent | 78f6098f7046a00f19943e820f17ed9ec15fbb84 (diff) |
qualify email recipient address with the FQDN of the local host. see #700
svn path=/trunk/; revision=5867
Diffstat (limited to 'rpki/gui')
-rw-r--r-- | rpki/gui/app/check_expired.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rpki/gui/app/check_expired.py b/rpki/gui/app/check_expired.py index 274568e8..a084af79 100644 --- a/rpki/gui/app/check_expired.py +++ b/rpki/gui/app/check_expired.py @@ -170,7 +170,7 @@ def notify_expired(expire_days=14, from_email=None): send_mail('stale RPKI data on ' + host, errs.getvalue(), from_email, - ['root']) + ['root@' + host]) # if not arguments are given, query all resource holders qs = Conf.objects.all() |