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 - je2u

Pages: 1 2 [3]
31
CentOS-WebPanel Bugs / gui - problem
« on: June 06, 2016, 06:12:05 AM »
Hello,
I got a problem since yesterday on main dashboard in gui admin's page:

Code: [Select]
Notice: Undefined index: lic in /usr/local/cwpsrv/htdocs/admin/index.php(1) : eval()'d code(1) : eval()'d code on line 44
Any solution?

32
E-Mail / Re: Sent emails
« on: March 29, 2016, 07:29:09 AM »
Yes, thank you.
I didn't check the CWP email service.
I got mails from DA, so, it doesn't have all in one place. So I got only the received mails, not sent.
The CWP works well and all I need is the /var/vmail/domain files to move all to another server. Thanks a lot.

33
E-Mail / Sent emails
« on: March 25, 2016, 05:08:42 PM »
Hello,

I need to migrate from one server to another. Question is - where I can find files for sent folder, to move them all on a new server?
There is no problem with moving inbox, from /var/vmail, but when it's done, there is no sent mails. Any suggestions?

34
Softaculous / Re: Unable to access softaculous after installation via CWP
« on: November 25, 2015, 07:29:26 AM »
Works for me too, thanks!

35
Softaculous / Problem with domain in customer area
« on: October 23, 2015, 07:32:30 PM »
Hello,

I got nearly fresh CWP install, which works in production level. That's great tool, but I started providing, for our customers Softaculous premium version.
The problem is, when customer want to install some software in it's area, after choosing software, in installation setup section, after choosing a protocol, there should be a list of available domains from customer's account. But there is no domains to choose and the installation cannot begin without that.
Where should I check the config with softacuus to make it work ?
I need this tool, because it's a great and comfortable service for people who don't need to know how things works.

Best regards,
MJ

36
PHP / php user settings
« on: October 08, 2015, 10:57:17 AM »
Hello,

When user create php.ini file, there are some predifined settings, like memory_limit, date.timezone, etc. Where I can define these variables for every new user?

Best regards,
MJ

37
Suggestions / Email confirmation
« on: September 28, 2015, 09:22:00 AM »
Hello,

Is it possible to add an email confirmation for new created users?
Feature works in DirectAdmin as well, where email is send to users, after successful account creation.
Message contains client url login to panel, account name, password, domain, package settings, server IP's, nameservers and some other customized messages.

Best regards,
MJ

38
E-Mail / Re: SPAM - config
« on: September 21, 2015, 01:24:50 PM »
Hello, I just finished configuring the postfix and would like to post for posterity my solution which works just fine.

First of all, we start at /etc/postfix/main.cf file and adding this:
Code: [Select]
# Sender restrictions:
smtpd_sender_restrictions =
    permit_mynetworks,
    reject_non_fqdn_sender,
    reject_unknown_sender_domain,
    check_sender_access hash:/etc/postfix/access,
    permit

Here you got the explanations - http://www.postfix.org/postconf.5.html#smtpd_sender_restrictions

Then we need the access file, which should be at the postfix directory. (explanations -> http://www.postfix.org/access.5.html)
In this file, we start to list domains/mails/patterns and actions to take after postfix will read that. So, I just needed domains for now and it looks like this:
Code: [Select]
domain.com REJECT
domain1.com REJECT
domain2.com REJECT

After that we need to postmap the file access, so run:
Code: [Select]
postmap hash:/etc/postfix/access
After all, restart postfix:
Code: [Select]
service postfix restart
To check if domain is blocked, you can create domain block for your private mail (for ex. gmail.com, yahoo.com, etc.) and see the action in /var/log/maillog
Code: [Select]
tail /var/log/maillogThere should be: [...] Sender address rejected: Access denied; [...]

For me, It's just fine.
Thank you Igor for motivating me to action.

39
E-Mail / Re: SPAM - config
« on: September 21, 2015, 08:08:21 AM »
Hello, unfortunately it is impossible to do from the CWP but you can configure your postfix.
For block all mail to/from the list of domains, you should add the following directive to your postfix main.cf file:
Code: [Select]
smtpd_sender_restrictions = hash:/etc/postfix/access
reject_unauth_destination = hash:/etc/postfix/access
Once this has been added to the main.cf, you need to create the /etc/postfix/access file and put entries in it like this:
Code: [Select]
some_bad_domain REJECT
next_bad_domain REJECT
nex_bad_domain REJECT

after run:
Code: [Select]
postmap hash:/etc/mail/access
service postfix restart

The postmap command should be:

Code: [Select]
postmap hash:/etc/postfix/access

40
E-Mail / Re: SPAM - config
« on: September 17, 2015, 05:40:12 AM »
As I supposed, thank you a lot!

41
E-Mail / SPAM - config
« on: September 16, 2015, 07:36:04 AM »
Hello,

This is my first topic, so I would like to thank CWP crew for great job.
We use CWP as a service priveder in Poland and CWP doing a awesome job. Customers are loving it.

I got a question about spam. Is there any possibility to make some black domain list, that will always be marked as a spam ?

Best regards,
je2u

Pages: 1 2 [3]