RoundCube Webmail Forum  

Go Back   RoundCube Webmail Forum > Release Support > Requests

For more information about the ads and why they're here, please see the FAQ
Reply
  #1  
Old 09-21-2006, 09:12 PM
Registered User
 
Join Date: Jul 2006
Posts: 43
Downloads: 0
Uploads: 0
Default Signature Above Quoted Text in a Reply...

It would be nice if one could set their preferences to place their signature above the quoted text when replying to an email.

I know it might not be the best Net-ettiquette (think I even spelled it wrong) - but in Thunderbird, I have my sig automatically placed above the quoted text.

In roundcube I have to scroll to the bottom of the message, grab the sig, then cut and paste it to the top of the new message.

Anyone have any suggestions as to how we might make this happen?

Kevin L.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2  
Old 09-28-2006, 11:25 PM
Registered User
 
Join Date: Sep 2006
Posts: 1
Downloads: 0
Uploads: 0
Default Re: Signature Above Quoted Text in a Reply...

I hear ya m8 =)
I do the same everywhere... can't stand the idea of someone having to scroll allllll the way down a long quote for ex. just to check my sig (which is something I definetly want people to look at - hence it's purpose )

Let's w8 and see if the devs check this =) (it can be a challenge code-wise... I don't know... maybe not)


ch33rs,
~Levi F. aka EinZteiN
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3  
Old 09-29-2006, 08:20 PM
Registered User
 
Join Date: Jun 2006
Posts: 106
Downloads: 0
Uploads: 0
Default Re: Signature Above Quoted Text in a Reply...

imho top-posting is not very comford to read and therefore cursor should go to the bottom of the mail when replying .. right where the signature is
__________________
irc://irc.freenode.net:6667/#roundcube
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4  
Old 09-29-2006, 10:32 PM
reefnet
Guest
 
Posts: n/a
Downloads:
Uploads:
Default Re: Signature Above Quoted Text in a Reply...

I agree...DOWN [sic] WITH TOP POSTING!! The default should be bottom posting, perhaps with an option to use top-posting if you really must (don't do it!).
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5  
Old 10-14-2006, 05:35 AM
Registered User
 
Join Date: Aug 2006
Posts: 2
Downloads: 0
Uploads: 0
Default Re: Signature Above Quoted Text in a Reply...

Seems like this is a question of taste. I personally also prefer the signature above the quoted text...this makes it easier to read for long email chains with different senders.

For all those interested, this is an easy fix in 'app.js'. Simply modify the code as follows:

// add the new signature string
if (this.env.signatures && this.env.signatures[id])
{
sig = this.env.signatures[id];
if (sig.indexOf('--')!=0)
sig = '--\n'+sig;
message += '\n'+sig;
message = '\n\n'+sig+'\n\n'+message;
}
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6  
Old 10-14-2006, 02:57 PM
Registered User
 
Join Date: Oct 2006
Posts: 20
Downloads: 0
Uploads: 0
Default Re: Signature Above Quoted Text in a Reply...

Top/bottom posting is partly an issue of taste, but mostly an issue of netiquette. And common sense.

because it breaks the flow of conversation.
The main reason you should NOT top post is...


But there are plenty of other good reasons [http://www.caliburn.nl/topposting.html]. Basically, remember that your email is written for someone ELSE to read, not you. Make it easy for the recipient to understand and reply to himself.

That also means not quoting the whoooole message in a reply. As a general rule, if the amount of quoted text in your email is more than your own text, you have probably quoted too much.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7  
Old 11-17-2007, 02:58 AM
Registered User
 
Join Date: Nov 2007
Posts: 1
Downloads: 0
Uploads: 0
Default Re: Signature Above Quoted Text in a Reply...

I agree with the arguments for bottom-posting. But is there a good script that would really make RoundCube set it's compose page up for bottom posting well?

I'd just like to see it maybe move the cursor below the quoted message and above the signature or something. Thanks for any input!

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #8  
Old 01-16-2008, 02:20 PM
Registered User
 
Join Date: Jan 2008
Posts: 2
Downloads: 0
Uploads: 0
Default Re: Signature Above Quoted Text in a Reply...

Thanks for this fix, just what I was looking for!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #9  
Old 02-07-2008, 08:12 PM
Registered User
 
Join Date: Feb 2008
Posts: 3
Downloads: 0
Uploads: 0
Default Re: Signature Above Quoted Text in a Reply...

Quote:
Originally Posted by delsurf
Thanks for this fix, just what I was looking for!
are you using v0.1-rc2? if so what did you do. the code on v0.1-rc2 is;
Code:
 // add the new signature string
   if (this.env.signatures && this.env.signatures[id])
    {
    sig = this.env.signatures[id]['text'];
    if (this.env.signatures[id]['is_html'])
     {
     sig = this.env.signatures[id]['plain_text'];
     }
    if (sig.indexOf('-- ')!=0)
     sig = '-- \n'+sig;
    message += '\n'+sig;
    }
   }
when i remove the line message += '\n'+sig; no signature appears.
__________________
my personal site www.buglerroller.com
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #10  
Old 02-07-2008, 08:22 PM
Registered User
 
Join Date: Feb 2008
Posts: 3
Downloads: 0
Uploads: 0
Default Re: Signature Above Quoted Text in a Reply...

ahh i get it now.. replace

message += '\n'+sig;

with
message = '\n\n'+sig+'\n\n'+message;

__________________
my personal site www.buglerroller.com
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

For more information about the ads and why they're here, please see the FAQ

All times are GMT. The time now is 09:22 PM.


Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0
Copyright © 2006-2008 RoundCube Webmail Community