It has been a feature of every version of IMAIL I remmeber using thus far.
Currently I have 6.x and it is located in both The web-administration tools
& Imail Admin

In IMAdmin,
Its on the first tab when clicking on a virtual host.
 Defatult Max mailbox size, Single message max size, default max messages
(count).

These are just the defaults for creating new users,
The limits themselves are actually set on the userlevel.
Tree down to a username, and click on the "directory" tab, here you can set
these limits.

For those of you using a SQL db like me, its easy to "enforce" the limits
(My "host admin" users sometimes get smart and will reset their limits
themselves beyond what I allow).
I run a daily (CF) script to reset all limits to my settings.

# this SQL call will get all of your IMAIL table 
# names stored in the same db, all of mine start with 'mail.'
# remove the last "and name..." 

select name from sysobjects where xtype='U' and name like 'mail%'

# Then loop through the results...
# note: maxsize is maximum mailbox size, not message size
<cfloop query="gettable">
        <cfquery name="setsize" datasource="imail">
                UPDATE #name# set maxsize = 10240000 
        </cfquery>
</cfloop>


-----Original Message-----
From: Roger Heath [mailto:[EMAIL PROTECTED]] 
Sent: Monday, February 03, 2003 8:14 AM
To: Andy Schmidt
Subject: Re[2]: [Declude.JunkMail] Reject Msg based on Size


Reply to: Andy Schmidt
      Re: [Declude.JunkMail] Reject Msg based on Size on Monday 8:07:22 AM

This is not in my earlier version of Imail... Does this do this on an
account basis or domain basis? It must be in later versions unless I am
missing something.

--
Roger Heath
[EMAIL PROTECTED]
www.rleeheath.com


----- Copy of Original Message(s): -----

A> Why not control the message size in Imail - you can set it per domain 
A> and, I believe, per user.

A> If the message exceeds the max message size, Imail will reject it - 
A> and it will result in a bounce from the SENDING server.

A> In fact, Imail's ESMTP will announce the max message size to the 
A> sending server so that it can be rejected BEFORE it is transmitted 
A> (at EHLO time!)

A> Best Regards
A> Andy

A> ---
A> [This E-mail was scanned for viruses by Declude Virus 
A> (http://www.declude.com)]

A> ---
A> This E-mail came from the Declude.JunkMail mailing list.  To 
A> unsubscribe, just send an E-mail to [EMAIL PROTECTED], and type 
A> "unsubscribe Declude.JunkMail".  The archives can be found at 
A> http://www.mail-archive.com.
A> --
A> ActivatorMail(tm) ver.122102 Scanned for all viruses by
A> www.activatormail.com intelligent anti-virus anti-spam service

--
ActivatorMail(tm) ver.122102 Scanned for all viruses by 
www.activatormail.com intelligent anti-virus anti-spam service

---
[This E-mail was scanned for viruses by Declude Virus
(http://www.declude.com)]

---
This E-mail came from the Declude.JunkMail mailing list.  To unsubscribe,
just send an E-mail to [EMAIL PROTECTED], and type "unsubscribe
Declude.JunkMail".  The archives can be found at
http://www.mail-archive.com.
---
[This E-mail was scanned for viruses by Declude Virus (http://www.declude.com)]

---
This E-mail came from the Declude.JunkMail mailing list.  To
unsubscribe, just send an E-mail to [EMAIL PROTECTED], and
type "unsubscribe Declude.JunkMail".  The archives can be found
at http://www.mail-archive.com.

Reply via email to