Roundcube Community Forum

 

Signature separator

Started by tofinoguy, October 26, 2006, 01:24:27 AM

Previous topic - Next topic

tofinoguy

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

Le_Tolier


Scubes13

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

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

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

Kevin L.

tofinoguy

Thanks Kevin,

Unfortunately this doesn't seem to take the signature separator out.

blove57

Yes it does work- thx Scubes13. It worked for me. Clear your cache and refresh.

akelly

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.