Abwesenheitsbenachrichtigung keine Umlaute

  • I had the same "issue".

    I wrote a small text in the autoresponder which contained a "ü".

    In the UI, its written as "ü" but in the recieved mail (from the autoresponder) ist written as this: "ü".

    Coud you please say me which local is set on your system, Output of /usr/bin/locale ?


    And also, the mail client name you're using.


    Thanks.

    badge.php?id=1239063037&bid=2518&key=1747635596&format=png&z=547451206

  • LANG=en_US.UTF-8

    LANGUAGE=

    LC_CTYPE="en_US.UTF-8"

    LC_NUMERIC="en_US.UTF-8"

    LC_TIME="en_US.UTF-8"

    LC_COLLATE="en_US.UTF-8"

    LC_MONETARY="en_US.UTF-8"

    LC_MESSAGES="en_US.UTF-8"

    LC_PAPER="en_US.UTF-8"

    LC_NAME="en_US.UTF-8"

    LC_ADDRESS="en_US.UTF-8"

    LC_TELEPHONE="en_US.UTF-8"

    LC_MEASUREMENT="en_US.UTF-8"

    LC_IDENTIFICATION="en_US.UTF-8"

    LC_ALL=




    Just noticed its set to "en_US.UTF-8", that might be the problem. Should be "de_DE.UTF-8" in my case right?

    Have a nice day. :)

  • DrCarsonBeckett


    And also, the mail client name you're using.


    Thank you ;)

    badge.php?id=1239063037&bid=2518&key=1747635596&format=png&z=547451206

  • I use Microsoft Outlook 2019 x64, just tested it in the webinterface from my mail provider (icloud). Its the same like in Outlook.

    Have a nice day. :)

  • I use Microsoft Outlook 2019 x64, just tested it in the webinterface from my mail provider (icloud). Its the same like in Outlook.

    Ok thank you for all info. I'll have a look this afternoon. This is not the first time we encounter such encoding problem with vacation module, mostly with german special characters.

    badge.php?id=1239063037&bid=2518&key=1747635596&format=png&z=547451206

  • DrCarsonBeckett


    Confirmed.


    Vacation message

    Code
    1. Löwen, Bären, Vögel und Käfer sind Tiere.
    2. ä = ae
    3. ö = oe
    4. ü = ue


    Result


    umlaut_bug.png

    badge.php?id=1239063037&bid=2518&key=1747635596&format=png&z=547451206

  • Nuxwin

    Added the Label to be fixed
  • Okay, nice. Means it will most likely be implemented in the next release i guess? :)

    Could you try the following:


    Edit the /var/www/imscp/engine/messenger/imscp-arpl-msgr script, then change


    Perl
    1. use Encode qw/ encode /;

    by

    Perl
    1. use Encode qw/ decode encode /;


    and


    Perl
    1. Data => encode( 'utf8', $val )

    by

    Perl
    1. Data => encode( 'UTF-8', decode( 'UTF-8', $val ))


    then, save and retry?


    Result should be:


    result.png


    Thank you.


    BTW: You can inhibit default wait time by changing the first SQL query to


    Perl
    1. $dbh->do( "DELETE FROM `autoreplies_log`" );

    instead of

    Perl
    1. $dbh->do( "DELETE FROM `autoreplies_log` WHERE ADDTIME(`time`, '24:00:00') < NOW()" );

    badge.php?id=1239063037&bid=2518&key=1747635596&format=png&z=547451206