-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmail-settings.inc
More file actions
33 lines (26 loc) · 849 Bytes
/
mail-settings.inc
File metadata and controls
33 lines (26 loc) · 849 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?
$mail_notify_enabled = True;
//$mail_from = "Pingus level comment tool <pingus-devel@nongnu.org>";
//$mail_replyto = "Pingus developer list <pingus-devel@nongnu.org>";
$mail_from = "Pingus level comment tool <elonen@iki.fi>";
$mail_replyto = "Pingus developer list <elonen@iki.fi>";
$mail_forwards = Array(
"obsolete@example.com" => "new-one@example.com",
"reluctant@example.com" => null
);
$mail_subject = "[Pingus levels] comments on @CATHEGORY/@LEVEL";
$mail_message = <<<EOMSG
@SENDER
has commented on your Pingus level at
http://elonen.iki.fi/pingus/?c=@CATHEGORY&l=@LEVEL
Rating: @RATING
Difficulty: @DIFFICULTY
Comments:
---------
@COMMENTS
---------
This is an automatically generated notification mail.
If you wish not to receive comments anymore, write a
short note to Pingus developer list pingus-devel@nongnu.org.
EOMSG;
?>