An example signature may be:
On Tue, Mar 20, 2012 at 2:38 PM, Johnny Walker <johnny.talker@gmail.com> wrote:
And then follows the quoted reply. I do have a discrete sensation this is locale specific though which makes me a sad programmer.
The reason I ask for this is because roundup doesn’t strip these correctly when replying through gmail to an issue. And I think origmsg_re is the config.ini variable I need to set alongside keep_quoted_text = no to fix this.
Right now it’s the default origmsg_re = ^[>|\s]*-----\s?Original Message\s?-----$
Edit: Now I’m using origmsg_re = which works with some gmail clients that break lines that are too long.
^On[^<]+<.+@.+>[ \n]wrote:[\n]
The following regex will match gmails prefix in a pretty safe manner. It ensures that there are 3 commas and the liter text On … wrote
If the regex should match in a case insensitve way then don’t forget to add the modifier.
Kind Regards, Buckley