Anyone have experience in plugin coding for Roundcube?
I am in the process of creating a light weight plugin for adding a stay-logged-in checkbox on the login page. It doesn't use/add any DB columns or create extra cookies. It only modifies the existing two cookies that roundcube already sets by extending their expiration from session-only to several days.
The part i could use help with, is the template for adding the html checkbox is in javascript.
I am not seeing how to get a value from …
[View More]config.inc.php into javascript.
As of now i have to set the same value in both the php and javascript files.
Or if there is a way to inject the HTML from the PHP instead of needing to use JS i would prefer that.
PHP:
function loginTemplate($args) {
$this->add_texts('localization', true);
$this->include_script('stay_loggedin.js');
return $args;
}
JAVASCRIPT:
$(document).ready(function () {
if (window.rcmail && window.rcmail.env.skin == 'elastic') {
rcmail.addEventListener('init', function () {
...
...
let days = ???_config.inc.php_VALUE_???;
...
...
});
}
});
[View Less]
A feature that exists in Gmail that I'd like to see in Roundcube is
an "Unsubscribe" button. This button can be used to unsubscribe from
mailing lists automatically. It simply uses the "List-Unsubscribe"
header which contains a link (usually a mailto) that the recipient
can visit (or send an email to) to unsubscribe from the list.
The button would only show if this List-Unsubscribe header is present
in the message being viewed. For an example, I've attached a screenshot
of Gmail's unsubscribe …
[View More]button. It's to the right of the sender's email
address.
If this is a welcome addition, I can try implementing it, but I haven't
contributed to Roundcube before so I might not be able to get it right.
--
Kian Kasad
kian(a)kasad.com
+1 (925) 871-9823
[View Less]