]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/mail.php
fix mail sending
[quix0rs-gnu-social.git] / lib / mail.php
1 <?php
2 /*
3  * Laconica - a distributed open-source microblogging tool
4  * Copyright (C) 2008, Controlez-Vous, Inc.
5  *
6  * This program is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU Affero General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU Affero General Public License for more details.
15  *
16  * You should have received a copy of the GNU Affero General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 if (!defined('LACONICA')) { exit(1); }
21
22 require_once('Mail.php');
23
24 function mail_backend() {
25         static $backend = NULL;
26
27         if (!$backend) {
28                 global $config;
29                 $backend = Mail::factory($config['mail']['backend'],
30                                                                  ($config['mail']['params']) ? $config['mail']['params'] : array());
31                 if (PEAR::isError($backend)) {
32                         common_server_error($backend->getMessage(), 500);
33                 }
34         }
35         return $backend;
36 }
37
38 # XXX: use Mail_Queue... maybe
39
40 function mail_send($recipients, $headers, $body) {
41         $backend = mail_backend();
42         assert($backend); # throws an error if it's bad
43         $sent = $backend->send($recipients, $headers, $body);
44         if (PEAR::isError($sent)) {
45                 common_log(LOG_ERR, 'Email error: ' . $sent->getMessage());
46                 return false;
47         }
48         return true;
49 }
50
51 function mail_domain() {
52         $maildomain = common_config('mail', 'domain');
53         if (!$maildomain) {
54                 $maildomain = common_config('site', 'server');
55         }
56         return $maildomain;
57 }
58
59 function mail_notify_from() {
60         $notifyfrom = common_config('mail', 'notifyfrom');
61         if (!$notifyfrom) {
62                 $domain = mail_domain();
63                 $notifyfrom = common_config('site', 'name') .' <noreply@'.$domain.'>';
64         }
65         return $notifyfrom;
66 }
67
68 function mail_to_user(&$user, $subject, $body, $address=NULL) {
69         if (!$address) {
70                 $address = $user->email;
71         }
72
73         $recipients = $address;
74         $profile = $user->getProfile();
75
76         $headers['From'] = mail_notify_from();
77         $headers['To'] = $profile->getBestName() . ' <' . $address . '>';
78         $headers['Subject'] = $subject;
79
80         return mail_send($recipients, $headers, $body);
81 }
82
83 # For confirming a Jabber address
84 # XXX: change to use mail_to_user() above
85
86 function mail_confirm_address($code, $nickname, $address) {
87         $recipients = $address;
88         $headers['From'] = mail_notify_from();
89         $headers['To'] = $nickname . ' <' . $address . '>';
90         $headers['Subject'] = _('Email address confirmation');
91
92         $body = "Hey, $nickname.";
93         $body .= "\n\n";
94         $body .= 'Someone just entered this email address on ' . common_config('site', 'name') . '.';
95         $body .= "\n\n";
96         $body .= 'If it was you, and you want to confirm your entry, use the URL below:';
97         $body .= "\n\n";
98         $body .= "\t".common_local_url('confirmaddress',
99                                                                    array('code' => $code));
100         $body .= "\n\n";
101         $body .= 'If not, just ignore this message.';
102         $body .= "\n\n";
103         $body .= 'Thanks for your time, ';
104         $body .= "\n";
105         $body .= common_config('site', 'name');
106         $body .= "\n";
107
108         mail_send($recipients, $headers, $body);
109 }
110
111 function mail_subscribe_notify($listenee, $listener) {
112         if ($listenee->email && $listenee->emailnotifysub) {
113                 $profile = $listenee->getProfile();
114                 $other = $listener->getProfile();
115                 $name = $profile->getBestName();
116                 $long_name = ($other->fullname) ? ($other->fullname . ' (' . $other->nickname . ')') : $other->nickname;
117                 $recipients = $listenee->email;
118                 $headers['From'] = mail_notify_from();
119                 $headers['To'] = $name . ' <' . $listenee->email . '>';
120                 $headers['Subject'] = sprintf(_('%1$s is now listening to your notices on %2$s.'), $other->getBestName(),
121                                                                           common_config('site', 'name'));
122                 $body  = sprintf(_('%1$s is now listening to your notices on %2$s.'."\n\n".
123                                                    "\t".'%3$s'."\n\n".
124                                                    'Faithfully yours,'."\n".'%4$s.'."\n"),
125                                                  $long_name,
126                                                  common_config('site', 'name'),
127                                                  $other->profileurl,
128                                                  common_config('site', 'name'));
129                 mail_send($recipients, $headers, $body);
130         }
131 }
132
133 function mail_new_incoming_notify($user) {
134
135         $profile = $user->getProfile();
136         $name = $profile->getBestName();
137
138         $headers['From'] = $user->incomingemail;
139         $headers['To'] = $name . ' <' . $user->email . '>';
140         $headers['Subject'] = sprintf(_('New email address for posting to %s'),
141                                                                   common_config('site', 'name'));
142
143         $body  = sprintf(_("You have a new posting address on %1\$s.\n\n".
144                                            "Send email to %2\$s to post new messages.\n\n".
145                                            "More email instructions at %3\$s.\n\n".
146                                            "Faithfully yours,\n%4\$s"),
147                                          common_config('site', 'name'),
148                                          $user->incomingemail,
149                                          common_local_url('doc', array('title' => 'email')),
150                                          common_config('site', 'name'));
151
152         mail_send($user->email, $headers, $body);
153 }
154
155 function mail_new_incoming_address() {
156         $prefix = common_good_rand(8);
157         $suffix = mail_domain();
158         return $prefix . '@' . $suffix;
159 }
160
161 function mail_broadcast_notice_sms($notice) {
162
163         $user = new User();
164
165         $user->smsnotify = 1;
166         $user->whereAdd('EXISTS (select subscriber from subscriptions where ' .
167                                         ' subscriber = user.id and subscribed = ' . $notice->profile_id);
168         $user->whereAdd('sms is not null');
169
170         $cnt = $user->find();
171
172         while ($user->fetch()) {
173                 $success = mail_send_sms_notice($notice, $user);
174                 if (!$success) {
175                         common_log(LOG_ERR, 'Could not send SMS message to user', __FILE__);
176                         return false;
177                 }
178         }
179         
180         return true;
181 }
182
183 function mail_send_sms_notice($notice, $user) {
184         $profile = $user->getProfile();
185         $name = $profile->getBestName();
186         $to = $name . ' <' . $user->smsemail . '>';
187         $other = $notice->getProfile();
188
189         $headers = array();
190         $headers['From'] = $user->incomingemail;
191         $headers['To'] = $to;
192         $headers['Subject'] = sprintf(_('%s status'),
193                                                                   $other->getBestName());
194         $body = $notice->content;
195         
196         return mail_send($user->smsemail, $headers, $body);
197 }
198
199 function mail_confirm_sms($code, $nickname, $address) {
200
201         $recipients = $address;
202
203         $headers['From'] = mail_notify_from();
204         $headers['To'] = $nickname . ' <' . $address . '>';
205         $headers['Subject'] = _('SMS confirmation');
206
207         $body = "$nickname: confirm you own this phone number with this code:";
208         $body .= "\n\n";
209         $body .= $code;
210         $body .= "\n\n";
211
212         mail_send($recipients, $headers, $body);
213 }