Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Jormungandr

Pages: [1]
1
Hello all!

This is a really small issue but it is really irritating. Since upgrading from Zentyal 5 to 6 when forwarding a message via webmail the cursor starts in the message body instead of the "To" field. Is it possible to get that behavior back in Zentyal 6 / SOGo 4.0.2?

2
Spanish / Re: Lets Encrypt en Zentyal 5
« on: September 18, 2017, 06:38:02 pm »
Tienes que crear los archivos .postsetconf en / etc / zentyal / hooks también necesitan permisos + x
el nombre.postsetconf necesita coincidir con el nombre del módulo ... aquí está mi directorio de hooks


Code: [Select]
ll /etc/zentyal/hooks
total 16
drwxr-xr-x 2 root root 4096 Aug 25 11:22 ./
drwxr-xr-x 8 root root 4096 Aug 29 02:41 ../
-rwxr-x--x 1 root root  691 Aug  3 23:06 ca.postsetconf*
-rwxr-x--x 1 root root  353 Aug 25 11:19 sogo.postsetconf*
aquí están mis archivos postsetconf. El tuyo debe ser similar
Code: [Select]
cat /etc/zentyal/hooks/ca.postsetconf
 cat /etc/letsencrypt/live/mail.domainname.com/privkey.pem /etc/letsencrypt/live/mail.domainname.com/cert.pem /etc/letsencrypt/live/mail.domainname.com/fullchain.pem > /tmp/temp.pem
  cp -f /tmp/temp.pem /etc/dovecot/private/dovecot.pem
  cp -f /tmp/temp.pem /etc/postfix/sasl/postfix.pem
  cp -f /tmp/temp.pem /etc/ocsmanager/blah.org.pem
  cp -f /tmp/temp.pem /var/lib/zentyal/conf/ssl/ssl.pem

rm -f /tmp/temp.pem

  chmod 600 /etc/dovecot/private/dovecot.pem
  chmod 400 /etc/postfix/sasl/postfix.pem
  chmod 644 /etc/ocsmanager/blah.org.pem
  chmod 600 /var/lib/zentyal/conf/ssl/ssl.pem
  exit 0
y aqui es sogo.postsetconf
Code: [Select]
cat /etc/zentyal/hooks/sogo.postsetconf
#!/bin/sh

  cat /etc/letsencrypt/live/mail.domainname.com/privkey.pem /etc/letsencrypt/live/mail.domainname.com/cert.pem /etc/letsencrypt/live/mail.domainname.com/fullchain.pem > /tmp/temp.pem

cp -f /tmp/temp.pem /etc/ocsmanager/domainname.com.pem

rm -f /tmp/temp.pem

chmod 400 /etc/postfix/sasl/postfix.pem

service apache2 restart
zs sogo restart

3
Email and Groupware / Re: Deleting Contacts fails
« on: August 25, 2017, 11:01:20 pm »
You'll notice the same issue with calendar appointments. The fix is included in a newer release of SOGo that hasn't been included in Zentyal yet.

4
Spanish / Re: Lets Encrypt en Zentyal 5
« on: August 25, 2017, 07:35:57 pm »
Necesita esta línea en su /etc/apache2/sites-enabled/default-ssl.conf
Code: [Select]
SSLCertificateFile      /etc/postfix/sasl/postfix.pem
Usted tendrá que reemplazar la línea
entonces
Code: [Select]
zs sogo restart
service apache2 restart
Y es bueno (con suerte)

6
Spanish / Re: Lets Encrypt en Zentyal 5
« on: August 21, 2017, 06:52:42 pm »
¡Hola! Mi español no es bueno, pero este problema tiene una solución aquí:
https://forum.zentyal.org/index.php/topic,28251.0.html
Está en inglés, pero el... ¿code? está trabajando.

7
Email and Groupware / Re: mail problems
« on: August 16, 2017, 06:41:46 pm »
Hi there. It looks like you're rejecting your own messages as spam. That may be half your issue anyway.
If you're using a stub for your antispam add
Code: [Select]
score ALL_TRUSTED -100 -100 -100 -100somewhere in the local.cf.mas file (if you're not using a stub file you'll have to create one. To do that type 
Code: [Select]
mkdir -p /etc/zentyal/stubs/mailfilter && cp -n /usr/share/zentyal/stubs/mailfilter/local.cf.mas /etc/zentyal/stubs/mailfilter/local.cf.mas  That command will create the directory structure for the stubs if it doesn't exist and copy the stub file if it doesn't exist.)
What that score does is add a -100 score to every message that originates in a trusted network. That way you won't block your own stuff. At least this solved this issue for me.

8
Email and Groupware / Re: OpenChange Setting Error
« on: July 11, 2017, 10:02:56 pm »
You might need to remove the openchange module, then re-install it.
Failing that you might need to deprovision openchange via the terminal.

9
Email and Groupware / Re: Customizing Web Interface For Blind Users
« on: May 26, 2017, 08:24:05 pm »
Hi there, you're doing a good thing making SOGo accessible!

The Web page templates are in /usr/lib/GNUstep/SOGo/Templates/MainUI or possibly /usr/lib64/GNUstep/SOGo/Templates/MainUI
Images, CSS and JS and such are  /usr/lib/GNUstep/SOGo/WebServerResources or  /usr/lib64/GNUstep/SOGo/WebServerResources
The Javascript is minified too.

10
Installation and Upgrades / Re: Let's Encrypt SSL Certrificates
« on: January 31, 2017, 04:48:29 pm »
Thanks for posting this! Your directions were basically perfect and I can confirm it doesn't clobber exchange emulation.

11
Email and Groupware / Re: mail filter - banned name
« on: December 06, 2016, 11:58:19 pm »
That's a setting in Mail Filter > Files ACL. It sounds like your client blocked delivery of .jpg files.

12
Installation and Upgrades / Re: Zentyal - Exchange email on Linux?
« on: November 02, 2016, 03:48:24 pm »
I'd noticed while testing Zentyal commercial that using Outlook in Exchange mode to send a really big attachment, 400mb+ will crash samba hard, I also noticed the calendar didn't auto-referesh like the inbox did and assigning task mails just disappearing into the void. I mentioned that to Heidi and she said the issues sounded familiar.

Pages: [1]