Tag: roundcube

  • Roundcube add generic message in footer

    Add message to footer of outgoing mails.

    Edit config/defaults.inc.php

    Add

    $config['generic_message_footer'] = 'message_footer.txt';
    $config['generic_message_footer_html'] = 'message_footer.txt';
    

    Now in root folder of roundcube, create a file message_footer.txt

    Add

    
    -----------------------------
    Get Free [email protected] email address.
    
    ---
     config/defaults.inc.php |    2 +-
     1 file changed, 1 insertion(+), 1 deletion(-)
     create mode 100644 message_footer.txt
    
    diff --git a/config/defaults.inc.php b/config/defaults.inc.php
    index ffce8e7..ba429fd 100644
    --- a/config/defaults.inc.php
    +++ b/config/defaults.inc.php
    @@ -427,7 +427,7 @@ $config['include_host_config'] = false;
     
     // path to a text file which will be added to each sent message
     // paths are relative to the Roundcube root folder
    -$config['generic_message_footer'] = '';
    +$config['generic_message_footer'] = 'message_footer.txt';
     
     // path to a text file which will be added to each sent HTML message
     // paths are relative to the Roundcube root folder
    diff --git a/message_footer.txt b/message_footer.txt
    new file mode 100644
    index 0000000..e69de29
    -- 
    1.7.9.5
    

    See Roundcube

  • Roundcube disable multiple identities

    Edit

    config/main.inc.php
    

    Find

    // Set identities access level:
    // 0 - many identities with possibility to edit all params
    // 1 - many identities with possibility to edit all params but not email address
    // 2 - one identity with possibility to edit all params
    // 3 - one identity with possibility to edit all params but not email address
    $rcmail_config['identities_level'] = 3;
    

    Setting value of identities_level disallow users to change from email address.

    See Roundcube

  • Enable debug mode in Roundcube webmail

    To enable debug mode in roundcube webmail, edit file

    /config/main.inc.php
    

    Update the vairable

    $rcmail_config['imap_debug']
    

    See Roundcube

  • Roundcube Webmail Logs in Cpanel Server

    Roundcube logs that are located at the following paths:

    /var/cpanel/roundcube/log/errors
    /var/cpanel/roundcube/log/sendmail
    

    Cpanel roundcube logs

    /var/cpanel/roundcube/log/sendmail have logs for every email sent.

    See Cpanel