/[drupal]/contributions/modules/mass_contact/CHANGELOG.txt
ViewVC logotype

Contents of /contributions/modules/mass_contact/CHANGELOG.txt

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.17 - (show annotations) (download)
Thu Jul 31 18:17:05 2008 UTC (15 months, 3 weeks ago) by oadaeh
Branch: MAIN
CVS Tags: HEAD
Changes since 1.16: +10 -1 lines
File MIME type: text/plain
#289229 by ulf1: corrected ['Bcc'] to ['headers']['Bcc']. Also, commented out references to Mime Mail, and corrected the use of db_placeholders().
1 $Id: CHANGELOG.txt,v 1.16 2008/07/29 22:47:52 oadaeh Exp $
2
3 2008-07-31 Jason Flatt drupal@oadaeh.net
4 * mass_contact.module: Fixed a bug where I forgot to change the
5 $headers['Bcc'] variable to $params['headers']['Bcc'], per ulf1 on
6 http://drupal.org/comment/reply/289229.
7 Commented out all references to the Mime Mail module.
8 Changed the $cids vaiable from a string to an array in lines 1140 through
9 1143 in order for the db_placeholders() function in line 1145 to work
10 correctly.
11
12 2008-07-29 Jason Flatt drupal@oadaeh.net
13 * mass_contact.module: Added administrative options for forcing the HTML
14 and node options, per skizzo on http://drupal.org/node/145940.
15 Added a self copy option, per josvl on http://drupal.org/node/170928.
16 Added an administrative option to allow or disalllow the sender to change
17 the default name and e-mail address, per saul11 on
18 http://drupal.org/node/143911#comment-683219.
19 Added an administrative option to allow the charset to be specified, per
20 jarihj on http://drupal.org/node/182903.
21 Added permissions to send messages based on category, per silverd/csilver
22 on http://drupal.org/node/270423.
23
24 2008-07-20 Jason Flatt drupal@oadaeh.net
25 * translations/mass_contact.pot: Added.
26
27 2008-07-18 Jason Flatt drupal@oadaeh.net
28 * mass_contact.module: Changed the way the "Related tasks" texts are
29 generated to hopefully help with translations and themeing, per meible on
30 http://drupal.org/node/243292.
31 Added and changed permissions per joachim in
32 http://drupal.org/node/263156.
33
34 2008-07-08 Jason Flatt drupal@oadaeh.net
35 * mass_contact.module: Slight change to the wording of an error message.
36
37 2008-07-06 Jason Flatt drupal@oadaeh.net
38 * mass_contact.module: Changed how the message headers get updated.
39 Slightly modified how the body is created for sending through Mime Mail
40 (even though there is currently no Drupal 6.x compatible release of it).
41
42 2008-07-04 Jason Flatt drupal@oadaeh.net
43 * mass_contact.module: Corrected error checking for when sending.
44 Changed the node body variable to the correct one for saving attachments.
45 Changed how the body array is created and edited.
46
47 2008-06-11 Jason Flatt drupal@oadaeh.net
48 * mass_contact.module: More code updating to Drupal 6.x.
49 Fixed a bug where an extra category was selected by default.
50 * mass_contact.install: Added @file comment.
51
52 2008-06-10 Jason Flatt drupal@oadaeh.net
53 * mass_contact.module: Documented the functions.
54 Created separate function (_mass_contact_create_node_type()) for the
55 creation of the node type.
56 Made mass_contact_save_node() a private function.
57 Removed the return value from mass_contact_save_node() since it always
58 returned TRUE and never anything else.
59
60 2008-06-05 Jason Flatt drupal@oadaeh.net
61 * mass_contact.module: More code cleanup.
62
63 2008-06-04 Jason Flatt drupal@oadaeh.net
64 * mass_contact.install, mass_contact.module: Continued on upgrade to Drupal
65 6.x.
66 Code cleanup, based on PHP's E_ALL.
67
68 2008-05-28 Jason Flatt drupal@oadaeh.net
69 * mass_contact.module, TODO.txt: Continued on upgrade to Drupal 6.x.
70
71 2008-05-23 Jason Flatt drupal@oadaeh.net
72 * TODO.txt: Removed completed items.
73 * mass_contact.module: Changed four watchdog messages to be translatable.
74 * All: Started upgrade to Drupal 6.x.
75
76 2008-04-18 Jason Flatt drupal@oadaeh.net
77 * mass_contact.module: Changed variable name from mass_contact_HTML_d to
78 mass_contact_html_d.
79 Changed how an HTML and plain text message are formed, taking into
80 account the Mime Mail module.
81 Added information about the formatting of HTML messages as descriptions
82 for the checkboxes that enable HTML e-mails.
83
84 2008-04-15 Jason Flatt drupal@oadaeh.net
85 * mass_contact.module: Tweaked the output of a log message.
86
87 2008-04-06 Jason Flatt drupal@oadaeh.net
88 * mass_contact.module: Clean up based on the Code Review module and the
89 ./code-style.pl script: Changed "<br>" to "<br />". Changed "!=" to "<>"
90 in three SQL querues.
91
92 2008-02-22 Jason Flatt drupal@oadaeh.net
93 * mass_contact.module: Modified the help text displayed for tokens to only
94 show global tokens as nothing else will work at the time the tokens are
95 being applied. In order to get user tokens to work, all messages would
96 have to be sent out one-at-a-time to each recipient.
97
98 2008-02-17 Jason Flatt drupal@oadaeh.net
99 * mass_contact.module: Changed how attachments are handled if Mime Mail is
100 installed.
101
102 2008-01-23 Jason Flatt drupal@oadaeh.net
103 * mass_contact.module: Made SQL query change for PostgreSQL: compatibility.
104 Issue and fix reported by larsfp here: http://drupal.org/node/198778
105 Changed attachment save operation from FILE_EXISTS_REPLACE to
106 FILE_EXISTS_RENAME.
107 Changed the help text to work with POT extractor as reported by skizzo
108 here: http://drupal.org/node/176345
109
110 2008-01-22 Jason Flatt drupal@oadaeh.net
111 * mass_contact.module: Removed the code to check for the SMTP module.
112 Changed the recipients' e-mail addresses from $rnamea ." <". $rmaila .">"
113 to $rmaila.
114 Modified the way the attachment is added to the message.
115 Changed the way the attachment is saved with the node to address
116 http://drupal.org/node/155229.
117
118 2007-11-11 Jason Flatt drupal@oadaeh.net
119 * mass_contact.module: Changed the default value for showing the opt-out
120 check box from true to false.
121
122 2007-11-02 Jason Flatt drupal@oadaeh.net
123 * mass_contact.module: Commented out the SMTP Auth. module specific code.
124
125 2007-10-31 Jason Flatt drupal@oadaeh.net
126 * mass_contact.module: Removed denugging line, thanks to this notice:
127 http://drupal.org/node/188308
128
129 2007-10-20 Jason Flatt drupal@oadaeh.net
130 * mass_contact.module: Removed a forgotten extrapolation where the Token
131 module was being used.
132
133 2007-09-12 Jason Flatt drupal@oadaeh.net
134 * mass_contact.module: Fixed the fact that multiple categories were not
135 being mailed to (which is what delayed the previous changes from getting
136 into CVS).
137 Fixed two places (in the area where there is a limit on the number of
138 recipients) where I was not checking for a valid header before sending the
139 e-mail. Thanks to sharplesa for alerting me to this oversight:
140 http://drupal.org/node/173987
141 Removed translation functions in areas that didn't work, as reported by
142 skizzo in this comment: http://drupal.org/node/145940#comment-284484
143 * TODO.txt: Added for notes and reminders on things to do.
144
145 2007-09-01 Jason Flatt drupal@oadaeh.net
146 * CHANGELOG.txt: Added.
147 * mass_contact.module: The community has spoken: reverting all constants to
148 upper case.
149 Removed an uncessary validation check in mass_contact_admin_edit_validate.
150 Added periods at the end of a few sentences.
151 Moved code to inform user about node creation inside the check to do it in
152 the first place.
153 Changed the way creating categories works so that multiple categories can
154 be selected by default, and the mail page will respect those choices.
155 Added the two feature requests listed here: http://drupal.org/node/170837,
156 namely, hiding the categories checkbox, if there is only one category, and
157 it is set as selected, and showing descriptive text instead of the BCC
158 checkbox, if users are not allowed to change the setting.
159 Rearranged the admin settings and the mail page, so that they flowed more
160 like a standard e-mail sending form.
161 Tweaked a few things here and there (text, punctuation, etc.).
162 Added more commenting to the code. There's still more to do.
163 Probably some other stuff I forgot about. :^) (This was supposed to be a
164 quick change to a couple of things that ended up being a much bigger
165 update that took a lot longer.)

  ViewVC Help
Powered by ViewVC 1.1.2