Increase email attachment size

Discussion in 'HOWTO-Related Questions' started by mrbronz, Jul 9, 2021.

Tags:
  1. till

    till Super Moderator Staff Member ISPConfig Developer

    Ok, so its a CentOS system, my command was for Debian and Ubuntu. It seems as if you changed everything, so either something was not restarted, or none of the files is used by RoundCube. See post #18 on what to do next.
     
  2. w3bservice

    w3bservice Member

    my aktuell phpconfig
     

    Attached Files:

  3. w3bservice

    w3bservice Member

    my /etc/httpd/conf.d/roundcubemail.conf

    #
    # Round Cube Webmail is a browser-based multilingual IMAP client
    #

    Alias /roundcubemail /usr/share/roundcubemail
    Alias /webmail /usr/share/roundcubemail

    # Define who can access the Webmail
    # You can enlarge permissions once configured

    #<Directory /usr/share/roundcubemail/>
    # <IfModule mod_authz_core.c>
    # # Apache 2.4
    # Require local
    # </IfModule>
    # <IfModule !mod_authz_core.c>
    # # Apache 2.2
    # Order Deny,Allow
    # Deny from all
    # Allow from 127.0.0.1
    # Allow from ::1
    # </IfModule>
    #</Directory>

    <Directory /usr/share/roundcubemail/>
    Options none
    AllowOverride Limit
    Require all granted
    </Directory>

    # Define who can access the installer
    # keep this secured once configured

    #<Directory /usr/share/roundcubemail/installer/>
    # <IfModule mod_authz_core.c>
    # # Apache 2.4
    # Require local
    # </IfModule>
    # <IfModule !mod_authz_core.c>
    # # Apache 2.2
    # Order Deny,Allow
    # Deny from all
    # Allow from 127.0.0.1
    # Allow from ::1
    # </IfModule>
    #</Directory>

    <Directory /usr/share/roundcubemail/installer>
    Options none
    AllowOverride Limit
    Require local
    #Require all granted
    </Directory>

    # Those directories should not be viewed by Web clients.
    <Directory /usr/share/roundcubemail/bin/>
    Order Allow,Deny
    Deny from all
    </Directory>
    <Directory /usr/share/roundcubemail/plugins/enigma/home/>
    Order Allow,Deny
    Deny from all
    </Directory>


    <FilesMatch \.php$>
    SetHandler "proxy:fcgi://127.0.0.1:9000"
    #SetHandler "proxy:unix:/run/php-fpm/www.sock|fcgi://localhost"
    #SetHandler "proxy:unix:/var/opt/remi/php82/run/php-fpm/www.sock|fcgi://localhost"
    </FilesMatch>


    with <FilesMatch \.php$> i have 75 M attachment
    without <FilesMatch \.php$> i have 2 M attachment
     
  4. w3bservice

    w3bservice Member

    It works and I have it in my documentation. I wish you a healthy and successful 2025 and keep up the good work.
     

Share This Page