Roundcube Community Forum

 

GLOBAL SIGNATURES

Started by BrotherAndrew, April 27, 2012, 05:24:00 AM

Previous topic - Next topic

BrotherAndrew

Hello There,

This Site ISN'T As Booming As It Could Be!  How Can GLOBAL SIGNATURES Be Added To The Bottom Of ALL Sent Out Emails When Using R C?!   ::)

SKaero

Look into the $rcmail_config['generic_message_footer'] and $rcmail_config['generic_message_footer_html'] options in the <RC root>/config/main.inc.php

BrotherAndrew

OK, I'll Check That Out!  MUCH THANKS!   :)

BrotherAndrew

Below Is What I Added To Those 2 Sections.  However, When Sending Out A TEST Plain & HTML E-MAIL To MORE THAN 1 PLACE, I DIDN'T See A Global Signature.  What Else Is Required?  MUCH THANKS!!!  :)

// path to a text file which will be added to each sent message
// paths are relative to the Roundcube root folder
$rcmail_config['generic_message_footer'] = 'TESTING 1 2 3!!!';

// path to a text file which will be added to each sent HTML message
// paths are relative to the Roundcube root folder
$rcmail_config['generic_message_footer_html'] = '<hr>TESTING 1 2 3!!!';

SKaero

The variables should link to a text file with the content to include at the end of the email.

BrotherAndrew

OK, Below Is How I Have It Currently.  And I Created 2 (.txt) Files With The URLs From Below.  That STILL DOESN'T Appear To Be Correct, However From What I Can Guess, It Should Be VERY CLOSE!  What Am I Missing Still?  MUCH THANKS!!!  :D

// path to a text file which will be added to each sent message
// paths are relative to the Roundcube root folder
$rcmail_config['generic_message_footer'] = 'http://www.thefamilyofyah.com/Global-Signature/Signature-Plain.txt';

// path to a text file which will be added to each sent HTML message
// paths are relative to the Roundcube root folder
$rcmail_config['generic_message_footer_html'] = 'http://www.thefamilyofyah.com/Global-Signature/Signature-HTML.txt';

SKaero

The paths should be relative to the RoundCube folder, so if you you put the file at <rc root>/config/signature.txt the configuration line should read 'config/signature.txt'

BrotherAndrew

OK, I Have The Global Signature Feature Figured Out NOW!  Does That REMAIN With ALL Version Upgrades?!

Also, I So Far Failed At Turning OFF Saving Sent Emails.  I Found An Area Last Week, However That DIDN'T Do It.  Now I'm NOT Sure Where I Did That?

And Please Post A Link For Me To The Thread About Replying WITHOUT The Original Message That's being Replied To.  There Could Be 2 Reply Links (Reply WITH Original Message) & (Reply WITHOUT Original Message)!

When My TESTING Is DONE, If I Change The R C Directory Name,  Do I Have To Update PHP MY Admin Too?  How About The URL In The Installed Scripts Area?

NOTE, When I Log Into cPanel Using The Same Browser As My R C, R C Logs Me OUT.  I Have It At 7 Days Logged In.

MUCH THANKS!!!  Me Should FINALLY Go To Bed!!!   :D

BrotherAndrew

After The Few Matters From My Last Post Are Figured Out, I Expect To Be ROLLING With This!   ;D

SKaero

Quote from: BrotherAndrew on May 01, 2012, 06:05:47 AM
OK, I Have The Global Signature Feature Figured Out NOW!  Does That REMAIN With ALL Version Upgrades?!
It should remain in upgrades.

Quote from: BrotherAndrew on May 01, 2012, 06:05:47 AM
Also, I So Far Failed At Turning OFF Saving Sent Emails.  I Found An Area Last Week, However That DIDN'T Do It.  Now I'm NOT Sure Where I Did That?
You can turn it off per email but I don't think there is an option to turn it off globally. You could make a plugin that would do it.

Quote from: BrotherAndrew on May 01, 2012, 06:05:47 AM
And Please Post A Link For Me To The Thread About Replying WITHOUT The Original Message That's being Replied To.  There Could Be 2 Reply Links (Reply WITH Original Message) & (Reply WITHOUT Original Message)!
I don't know of a plugin that does that, but you should be able to make a plugin that would do it.

Quote from: BrotherAndrew on May 01, 2012, 06:05:47 AM
When My TESTING Is DONE, If I Change The R C Directory Name,  Do I Have To Update PHP MY Admin Too?  How About The URL In The Installed Scripts Area?
You shouldn't have to change anything other than the directory name but if you didn't install in manually you may need to change it some where outside of RoundCube/

Quote from: BrotherAndrew on May 01, 2012, 06:05:47 AM
NOTE, When I Log Into cPanel Using The Same Browser As My R C, R C Logs Me OUT.  I Have It At 7 Days Logged In.
I haven't run into this problem, my guess is cPanel is overwriting RoundCube session cookie. Putting RoundCube on a sub-domain would most likely fix it.

BrotherAndrew

OK, I've Used Plugins A LOT In Recent Years, However I DON'T Recall Ever Creating My Own Plugins.  Is That EASY TO LEARN?   :)

SKaero

If you know PHP its pretty easy, check out the plugin documentation for a good walk through http://trac.roundcube.net/wiki/Doc_Plugins http://trac.roundcube.net/wiki/Plugin_Hooks

BrotherAndrew

OK, I'll Look That Info Over!  MUCH THANKS!  :--)

BrotherAndrew

What's The Difference Between (main.inc.php) & (main.inc.php.dist)?   :D

SKaero

main.inc.php is the active configuration file. main.inc.php.dist is the default configuration file.