TitanFighter
TitanFighter
Example from here: https://mauricius.github.io/vue-draggable-resizable/?path=/story/basic--basic-component-not-resizable ``` // Instead of "false" use some variable Basic component that is not resizable. ``` Set `:resizable` by default to "false" and change to "true" when...
[This code](https://github.com/mauricius/vue-draggable-resizable/blob/master/stories/how-to/drag-multiple.js) may help (especially check `draggingElement` part).
Instead of ``` location / { proxy_pass http://email.domain.tld:666/mail; } location /mail { proxy_pass http://email.domain.tld:666/mail; } location /iredadmin { proxy_pass http://email.domain.tld:666/iredadmin; } location /sogo { proxy_pass http://email.domain.tld:666/sogo; } ``` try location...
I also use mail.domain.com. If you wish I can share docker compose settings tomorrow. If you do not want to use docker compose then at least you can see how...
@AndreSouzaAbreu `docker-compose.nginx-proxy-w-le.yml` ``` # HOW TO USE: # 1. Download latest nginx.tmpl (save next to this docker-compose file): # curl https://raw.githubusercontent.com/jwilder/nginx-proxy/master/nginx.tmpl > ./nginx.tmpl # 2. Run docker-compose: docker-compose -f ./docker-compose.nginx-proxy-w-le.yml...
I have just one idea - from this example `POSTMASTER_PASSWORD={PLAIN}SuperSecretPassword` - you removed `{PLAIN}` part. You should leave this part unchanged and should change just `SuperSecretPassword`
@AndreSouzaAbreu just had your problem for some reason. [Here](https://docs.iredmail.org/reset.user.password.html#reset-password-with-sqlldap-command-line) is the instruction how to reset password. Basically you need to `docker exec -it iredmail-container-name bash`, then `mysql -u root` in...
In front of iredmail you probably have web server... nginx, apache? They have their own settings which can limit size of uploading files. For nginx the needed parameter is `client_max_body_size`.
``` docker run -p 80:80 -p 443:443 \ -h HOSTNAME.DOMAIN \ -e "MYSQL_ROOT_PASSWORD=password" \ -e "SOGO_WORKERS=1" \ -e "TZ=Europe/Prague" \ -e "POSTMASTER_PASSWORD={PLAIN}password" \ -e "IREDAPD_PLUGINS=['reject_null_sender', 'reject_sender_login_mismatch', 'greylisting', 'throttle', 'amavisd_wblist', 'sql_alias_access_policy']"...
As I understand, this issue duplicates [this one](https://github.com/Digital-Threads/vue-functional-calendar/issues/49)