BuddyBoss Home – Web Support Forums General Requests and Feedback Reply by email: thunderbird/outlook reply text

Viewing 3 posts - 1 through 3 (of 3 total)
  • Question

    #68184
    @aeoncentre

    It would be nice to have the ability to configure additional regex patterns for stripping out signature/reply boilerplate.

    I added these lines to my rbe-processor.php, but it would probably be better to make it configurable (allowing site admins to adapt to the localization/patterns of their users’ email programs).

    
    // strip standard thunderbird reply text
    $body = preg_replace("/\.*On .*, .* wrote:/s", "$1", $body);
    
    // strip standard outlook reply text
    $body = preg_replace("/\.*----- Original Message -----/s", "$1", $body);
    

    Answers

    #68186
    @aeoncentre

    Or maybe it is better to do it similar to how you handle ‘web outlook standard’ a little further down in the same file… What do you recommend?

    #70783
    @vapvarun

    Hi @aeoncentre
    We have added support for outlook in our current development. It’s released with 1.0.3 update.

    Regards
    Varun Dubey

Viewing 3 posts - 1 through 3 (of 3 total)
  • The question ‘Reply by email: thunderbird/outlook reply text’ is closed to new replies.