Re: [qmailtoaster] How to increase email attachment size

2017-12-14 Thread Chandran Manikandan
Hi Friends,

Yes, i want per user control.

Hi Tony,

Could you give me the command for vmoduser per user control.



On Tue, Dec 12, 2017 at 11:23 PM, Tony White  wrote:

> The only thing vmoduser seems to allow is to disengage domain limits
> for a given user.
>
> best wishes
>   Tony White
>
> On 13/12/2017 02:02, Remo Mattei wrote:
>
> You have to set that manually and try like vmoduser for those people.
>
> Remo
>
> Il giorno 12 dic 2017, alle ore 06:57, Tony White < 
> t...@ycs.com.au> ha scritto:
>
> You are correct Eric.
> Read to quickly.
>
> If it was me I would have two vm servers
> one for business and one for everyone else.
>
>
>
> best wishes
>   Tony White
>
> On 13/12/2017 01:19, Eric Broch wrote:
>
> Tony,
>
> I think he wanted per user control. That's a global control.
>
> Eric
>
> On 12/12/2017 7:12 AM, Tony White wrote:
>
> In the /var/qmail/control folder edit the
> databytes file to match the require
> attachment size ie 1000 is ~10MB.
>
> Dont forget to adjust your php setup to match
> or squirrelmail etc will only allow the size in php.ini
>
> best wishes
>   Tony White
>
> On 13/12/2017 00:55, Eric Broch wrote:
>
> Chandran,
>
> I don't think per user attachment size control is possible. If someone
> knows for sure please let us know.
>
> Eric
>
> On 12/12/2017 1:04 AM, Chandran Manikandan wrote:
>
> Dear Friends,
>
> I am using Qmailtoaster on centos 6.5 machine and currently having 200
> email accounts.
>
> I want to increase email attachment size like 20 MB for particular email
> account only like Business and management people.
>
> Currently provided only 7 MB in databytes file.
>
> If possible to provide 20 MB in webmail for those accounts only.
>
> Thanks in advance.
>
> --
> *Thanks,*
> *Manikandan.C*
> *System Administrator*
>
>
> --
> Eric Broch
> White Horse Technical Consulting (WHTC)
>
>
>
> --
> Eric Broch
> White Horse Technical Consulting (WHTC)
>
>
>
>


-- 
*Thanks,*
*Manikandan.C*
*System Administrator*


Re: [qmailtoaster] DKIM

2017-12-14 Thread Eric Broch

Hi Fatih,

Just got done testing. Here's what I did for domains (non-global).

1) # dknewkey /var/qmail/control/dkim/otherdomain.com.key > 
/var/qmail/control/dkim/otherdomain.com.txt


2) #  perl -pi -e 's/.key._domainkey//' 
/var/qmail/control/dkim/otherdomain.com.txt


3) # cat /var/qmail/control/dkim/otherdomain.com.txt

otherdomain.com    IN  TXT "k=rsa; 
p=**"


4) # vi /var/qmail/control/dkim/signconf.xml

Add:

  keyfile="/var/qmail/control/dkim/otherdomain.com.key" 
selector="otherdomain.com">

    
    
  

So file looks like this:


  
  keyfile="/var/qmail/control/dkim/global.key" method="simple" 
selector="dkim1">

    
  
  keyfile="/var/qmail/control/dkim/otherdomain.com.key" 
selector="otherdomain.com">

    
    
  



This worked for me.


Eric




On 12/14/2017 8:34 AM, Eric Broch wrote:


Yes, this option is available, though I've never done it (but should 
take this as an opportunity to learn), by configuring your domain in 
the signconf.xml file.


I'll take a look at this. If you get it figured out before me, please 
post.



On 12/14/2017 2:55 AM, jin wrote:

Thank you Eric

Before i go further on that guide, let me ask that can i use this 
solution to sign different domains ?


On 13 Dec 2017 11:27 p.m., "Eric Broch" > wrote:


Fatih,

DKIM: https://github.com/qmtoaster/dkim/blob/master/README.md




On 12/13/2017 1:07 PM, jin wrote:

Hi
I would like to enable dkim on our qmail server. It just serves
up te domain and i found a article how to achieve that. The
article i followed is publishing on :
"http://wiki.qmailtoaster.com/index.php/Domainkeys
"

My toaster works on CentOS6.8 and build number is 1.03-1.3.20.x86_64

I track down that article and trying to sign only outgoing
mails. I just realize that there are many different ways to
setup dkim support on qmail. Like replacing qmail-remote
executable file with scripted ones.

Can i ask that this wiki article is still usable on nowadays ?

When i finish my setup, i sent some mails and there was no dkim
signature.

How can i go further ?


Fatih



-- 
Eric Broch

White Horse Technical Consulting (WHTC)



--
Eric Broch
White Horse Technical Consulting (WHTC)


--
Eric Broch
White Horse Technical Consulting (WHTC)



Re: [qmailtoaster] DKIM

2017-12-14 Thread Eric Broch
Yes, this option is available, though I've never done it (but should 
take this as an opportunity to learn), by configuring your domain in the 
signconf.xml file.


I'll take a look at this. If you get it figured out before me, please post.


On 12/14/2017 2:55 AM, jin wrote:

Thank you Eric

Before i go further on that guide, let me ask that can i use this 
solution to sign different domains ?


On 13 Dec 2017 11:27 p.m., "Eric Broch" > wrote:


Fatih,

DKIM: https://github.com/qmtoaster/dkim/blob/master/README.md




On 12/13/2017 1:07 PM, jin wrote:

Hi
I would like to enable dkim on our qmail server. It just serves
up te domain and i found a article how to achieve that. The
article i followed is publishing on :
"http://wiki.qmailtoaster.com/index.php/Domainkeys
"

My toaster works on CentOS6.8 and build number is 1.03-1.3.20.x86_64

I track down that article and trying to sign only outgoing mails.
I just realize that there are many different ways to setup dkim
support on qmail. Like replacing qmail-remote executable file
with scripted ones.

Can i ask that this wiki article is still usable on nowadays ?

When i finish my setup, i sent some mails and there was no dkim
signature.

How can i go further ?


Fatih



-- 
Eric Broch

White Horse Technical Consulting (WHTC)



--
Eric Broch
White Horse Technical Consulting (WHTC)



Re: [qmailtoaster] DKIM

2017-12-14 Thread jin
Thank you Eric

Before i go further on that guide, let me ask that can i use this solution
to sign different domains ?

On 13 Dec 2017 11:27 p.m., "Eric Broch"  wrote:

> Fatih,
>
> DKIM: https://github.com/qmtoaster/dkim/blob/master/README.md
>
>
> On 12/13/2017 1:07 PM, jin wrote:
>
> Hi
> I would like to enable dkim on our qmail server. It just serves up te
> domain and i found a article how to achieve that. The article i followed is
> publishing on : "http://wiki.qmailtoaster.com/index.php/Domainkeys;
>
> My toaster works on CentOS6.8 and build number is 1.03-1.3.20.x86_64
>
> I track down that article and trying to sign only outgoing mails. I just
> realize that there are many different ways to setup dkim support on qmail.
> Like replacing qmail-remote executable file with scripted ones.
>
> Can i ask that this wiki article is still usable on nowadays ?
>
> When i finish my setup, i sent some mails and there was no dkim signature.
>
> How can i go further ?
>
>
> Fatih
>
>
> --
> Eric Broch
> White Horse Technical Consulting (WHTC)
>
>