Use proper email address in send_resetkey()

Fixes FS#41860.

Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
This commit is contained in:
Lukas Fleischer 2014-09-07 21:25:56 +02:00
parent 55586d9c22
commit 01fed360c2

View file

@ -664,7 +664,7 @@ function send_resetkey($email, $subject, $body) {
$headers = "MIME-Version: 1.0\r\n" .
"Content-type: text/plain; charset=UTF-8\r\n" .
"Reply-to: noreply@aur.archlinux.org\r\n" .
"From: notify@aur.achlinux.org\r\n" .
"From: notify@aur.archlinux.org\r\n" .
"X-Mailer: PHP\r\n" .
"X-MimeOLE: Produced By AUR";
@mail($email, $subject, $body, $headers);