Version 3.1.1
This commit is contained in:
@@ -1,3 +1,16 @@
|
||||
Version 3.1.1, released August 4th, 2015
|
||||
========================================
|
||||
|
||||
- Updated CKEditor to version 4.5.1
|
||||
- Implemented "Date/Time format <attribute> = ..."
|
||||
- Implemented "Use Email Subject Edit = ..."
|
||||
- Replaced "Back" by "Delete" button
|
||||
- Fixed many issues with Draft Messages
|
||||
- CSS file is now in *addition* to the default file elog.css
|
||||
- Added LDAP documentation
|
||||
- Added "Logout to URL = ..." option
|
||||
- Added description of Apacher server authentication
|
||||
|
||||
Version 3.1.0, released April 1st, 2015
|
||||
=======================================
|
||||
|
||||
|
||||
@@ -2286,6 +2286,9 @@ Options Location = Main Building{a}, New Building{b}, Old Building{c}
|
||||
<li>
|
||||
<b><code>Use Email Subject = <string></code></b>
|
||||
</li>
|
||||
<li>
|
||||
<b><code>Use Email Subject Edit = <string></code></b>
|
||||
</li>
|
||||
<li>
|
||||
<b><code>Use Email From = <string></code></b>
|
||||
</li>
|
||||
|
||||
+1
-1
@@ -29,7 +29,7 @@
|
||||
[<a class="nav" href="#links">Links</a>] * </div>
|
||||
<P class="Sub">Home of the <i>Electronic Logbook</i> package by <a href="mailto:Stefan.Ritt@psi.ch">
|
||||
Stefan Ritt</a></P>
|
||||
<div class="version">Current version is : 3.1.0</div>
|
||||
<div class="version">Current version is : 3.1.1</div>
|
||||
|
||||
<hr>
|
||||
<a name="whatis">
|
||||
|
||||
+6
-1
@@ -22381,7 +22381,12 @@ int compose_email(LOGBOOK * lbs, char *rcpt_to, char *mail_to, int message_id,
|
||||
retrieve_email_from(lbs, mail_from, mail_from_name, attrib);
|
||||
|
||||
/* compose subject from attributes */
|
||||
if (getcfg(lbs->name, "Use Email Subject", subject, sizeof(subject))) {
|
||||
if (old_mail && getcfg(lbs->name, "Use Email Subject Edit", subject, sizeof(subject))) {
|
||||
i = build_subst_list(lbs, slist, svalue, attrib, TRUE);
|
||||
sprintf(str, "%d", message_id);
|
||||
add_subst_list(slist, svalue, "message id", str, &i);
|
||||
strsubst_list(subject, sizeof(subject), slist, svalue, i);
|
||||
} else if (getcfg(lbs->name, "Use Email Subject", subject, sizeof(subject))) {
|
||||
i = build_subst_list(lbs, slist, svalue, attrib, TRUE);
|
||||
sprintf(str, "%d", message_id);
|
||||
add_subst_list(slist, svalue, "message id", str, &i);
|
||||
|
||||
Reference in New Issue
Block a user