Can you run wireshark (or tcpdump) on „host 127.0.0.1 and port 25“ to record the packets while you try to send? What is the error message you get when sending?
-Marcel > Am 06.11.2014 um 13:54 schrieb Anish P <[email protected]>: > > Hi, > > I'm not able to send mails from the SOGo webmail. After I write a new mail > and click send, the pop-up window stays there without closing, and also the > mail doesn't get send. > I checked /var/log/maillog and no entries are being logged there. I think the > mail to be send is not getting handed over to postfix. > > The SOGo configuration is as follows. > > { > SOGoProfileURL = "mysql://sogo:[email protected]:3306/sogo/sogo_user_profile > <mysql://sogo:[email protected]:3306/sogo/sogo_user_profile>"; > OCSFolderInfoURL = > "mysql://sogo:[email protected]:3306/sogo/sogo_folder_info > <mysql://sogo:[email protected]:3306/sogo/sogo_folder_info>"; > OCSSessionsFolderURL = > "mysql://sogo:[email protected]:3306/sogo/sogo_sessions_folder > <mysql://sogo:[email protected]:3306/sogo/sogo_sessions_folder>"; > //SOGoAuthenticationMethod = SQL; > /* Mail */ > SOGoDraftsFolderName = INBOX/Drafts; > SOGoSentFolderName = INBOX/Sent; > SOGoTrashFolderName = INBOX/Trash; > > > SOGoIMAPServer = localhost:143; > SOGoSieveServer = sieve://127.0.0.1:4190 <sieve://127.0.0.1:4190>; > SOGoSMTPServer = 127.0.0.1; > SOGoMailDomain = anish.com <http://anish.com/>; > SOGoMailingMechanism = smtp; > SOGoForceExternalLoginWithEmail = YES; > SOGoMailSpoolPath = /var/spool/imap; > NGImap4ConnectionStringSeparator = "/"; > > > SOGoForceIMAPLoginWithEmail = YES; > SOGoMemcachedHost = 127.0.0.1; > SOGoAppointmentSendEMailNotifications = YES; > SOGoACLsSendEMailNotifications = YES; > > > /* Authentication */ > SOGoPasswordChangeEnabled = YES; > > > /* LDAP authentication example */ > SOGoUserSources = ( > { > type = sql; > id = accounts; > viewURL = "mysql://sogo:password@localhost:3306/sogo/sogo_view > <mysql://sogo:password@localhost:3306/sogo/sogo_view>"; > canAuthenticate = YES; > isAddressBook = NO; > userPasswordAlgorithm = none; > displayName = "Employees"; > }, > ); > > /* Web Interface */ > > SOGoPageTitle = "Company Name"; > SOGoVacationEnabled = YES; > SOGoForwardEnabled = YES; > SOGoSieveScriptsEnabled = YES; > > /* General */ > SOGoLanguage = English; > SOGoTimeZone = Asia/Kolkata; > SOGoCalendarDefaultRoles = ( > PublicDAndTViewer, > ConfidentialDAndTViewer > ); > > > SOGoSuperUsernames = (cyrus); //This is an array - keep the parens! > WOWorkersCount = 32; > > /* Debug */ > SOGoDebugRequests = YES; > ImapDebugEnabled = YES; > LDAPDebugEnabled = YES; > PGDebugEnabled = YES; > MySQL4DebugEnabled = YES; > SOGoUIxDebugEnabled = YES; > WODontZipResponse = YES; > WOLogFile = /var/log/sogo/sogo.log; > GCSFolderDebugEnabled = YES; > OCSFolderManagerSQLDebugEnabled = YES; > SOGoImapDebugEnabled = YES; > SOGoUIxDebugEnabled = YES; > SoDebugKeyLookup = YES; > SoDebugBaseURL = YES; > } > > > Thanks, > Anish > > > > On Thursday 06 November 2014 05:54 PM, Christian Mack wrote: >> Hello >> >> So you can send emails, but moving them into your Sent folder doesn't work? >> Or do you try to send E-Mails via IMAP? >> >> Could you provide your sogo.conf please. >> >> >> Kind regards, >> Christian Mack >> >> Am 2014-11-06 um 09:49 schrieb Anish P: >>> Hi, >>> >>> Thank you for your reply. >>> >>> The mail server configuration is as follows >>> sogo-2.2.7-1 >>> postfix-2.6.6-6 >>> sope49-gdl1-mysql-4.9-20140730_1664 >>> cyrus-imapd-2.3.16-6 >>> >>> Errors are reported in sogo.log as well as /var/log/messages. >>> /var/log/messages shows the following error >>> =========== >>> Nov 6 13:32:28 localhost imap[7541]: auxpropfunc error invalid parameter >>> supplied >>> =========== >>> >>> Error shown in sogo.log is >>> =========== >>> EXCEPTION: <NSException: 0x7f9136338658> NAME:NSInvalidArgumentException >>> REASON:WOResponse(instance) does not recognize reason INFO:(null) >>> Nov 06 13:32:40 sogod [4698]: <0x0x7f9135f2faa8[WOWatchDogChild]> child >>> 4701 exited >>> Nov 06 13:32:40 sogod [4698]: <0x0x7f9135f2faa8[WOWatchDogChild]> >>> (terminated due to signal 6) >>> Nov 06 13:32:40 sogod [4698]: <0x0x7f9135f13388[WOWatchDog]> child >>> spawned with pid 11263 >>> 2014-11-06 13:32:40.162 sogod[11263] MySQL4 connection established >>> 0x0x7f9135cf8040 >>> =========== >>> >>> The cyrus-imap configuration is >>> =========== >>> configdirectory: /var/lib/imap >>> partition-default: /var/spool/imap >>> admins: cyrus >>> imap_admins: cyrus >>> sievedir: /var/lib/imap/sieve >>> sendmail: /usr/sbin/sendmail >>> virtdomains: on >>> hashimapspool: true >>> sasl_pwcheck_method: auxprop >>> sasl_auxprop_plugin: sql >>> sasl_sql_engine: mysql >>> sasl_mech_list: LOGIN PLAIN >>> sasl_sql_user: sogo >>> sasl_sql_passwd: password >>> sasl_sql_database: sogo >>> sasl_sql_hostnames: localhost >>> sasl_sql_select: SELECT c_password FROM sogo_view WHERE >>> mail = '%u@%r' >>> allowanonymouslogin: no >>> allowplaintext: yes >>> tls_cert_file: /etc/pki/tls/certs/server.pem >>> tls_key_file: /etc/pki/tls/certs/server.pem >>> tls_ca_file: /etc/pki/tls/certs/server.pem >>> =========== >>> >>> Currently based on this configuration I'm able to login to the SOGo >>> webmail interface and mailboxes are being displayed. >>> >>> Since /var/log/messages shows auxpropfunc error I tried changing the >>> sasl_pwcheck_method to pam but then mailboxes are not displayed after >>> logging in to SOGo webmail. >>> >>> I'm also able to authenticate to the smtp server via telnet. >>> >>> Thanks! >>> Anish >>> >>> On Monday 03 November 2014 08:39 PM, Christian Mack wrote: >>>> Hello >>>> >>>> Am 2014-10-31 um 14:38 schrieb [email protected]: >>>>> I'm trying to configure Sogo with multiple domains with mysql >>>>> authentication. >>>>> I'm able to login to the sogo webmail and view the messages in the >>>>> inbox, but >>>>> when I try to write a mail and send it I get the following error in >>>>> the sogo >>>>> log once the send button is clicked. >>>>> >>>>> EXCEPTION: <NSException: 0x7f913625ab88> NAME:NSInvalidArgumentException >>>>> REASON:WOResponse(instance) does not recognize reason INFO:(null) >>>>> Oct 31 18:20:47 sogod [4698]: <0x0x7f9135eaa2b8[WOWatchDogChild]> >>>>> child 4770 >>>>> exited >>>>> Oct 31 18:20:47 sogod [4698]: <0x0x7f9135eaa2b8[WOWatchDogChild]> >>>>> (terminated >>>>> due to signal 6) >>>>> >>>>> Also the pop up window that opens when write button is clicked does >>>>> not close >>>>> on its own. >>>>> >>>> Which version of SOGo is that? >>>> >>>> Did you also install the newest SOPE packages? >>>> >>>> Which SMTP server do you use? >>>> What error messages are in his logs? >>>> >>>> >>>> Kind regards, >>>> Christian Mack >>>> >> > > -- > [email protected] <mailto:[email protected]> > https://inverse.ca/sogo/lists <https://inverse.ca/sogo/lists>
smime.p7s
Description: S/MIME cryptographic signature
