Roundcube Community Forum

Release Support => Requests => Topic started by: tofinoguy on October 26, 2006, 01:24:27 AM

Title: Signature separator
Post by: tofinoguy on October 26, 2006, 01:24:27 AM
Does anyone know how can I remove the default signature separator (--)? I am assuming it has to deal with code in the app.js file.

Thanks
Title: Re: Signature separator
Post by: Le_Tolier on November 24, 2006, 07:18:45 AM
I interested by solution too :)
Title: Re: Signature separator
Post by: Scubes13 on December 06, 2006, 07:26:51 PM
At first glance, near line 1740 in app.js, change:

sig = '-- \n'+sig;
to

sig = '\n'+sig;
That should do the trick.

Kevin L.
Title: Re: Signature separator
Post by: tofinoguy on January 08, 2007, 04:43:26 AM
Thanks Kevin,

Unfortunately this doesn't seem to take the signature separator out.
Title: Re: Signature separator
Post by: blove57 on April 13, 2008, 09:32:47 PM
Yes it does work- thx Scubes13. It worked for me. Clear your cache and refresh.
Title: finding code to remove signature seperators
Post by: akelly on July 21, 2009, 07:29:17 AM
Hi Scubes13,

I'm not a coder at all......I found this forum based on my googling my frustrations to remove these annoying signature separators.

How do I get to your starting point?

At first glance, near line 1740 in app.js, change:


Code:
sig = '-- \n'+sig;

Thank you and greatly appreciate the help.