diff options
-rw-r--r-- | lib/Iurt/Config.pm | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/Iurt/Config.pm b/lib/Iurt/Config.pm index c7cde22..ac0427d 100644 --- a/lib/Iurt/Config.pm +++ b/lib/Iurt/Config.pm @@ -244,12 +244,9 @@ sub get_maint { $email_maint, $srpm_name; } -# TODO: would be nicer (really?) to use repsys configuration directly, and -# query the users list in there and LDAP according to it sub get_author_email { my ($user) = @_; - my $authoremail = `repsys authoremail $user 2>/dev/null`; - chomp($authoremail); + my $authoremail = $user . '@mageia.org'; return $authoremail; } |