Outgoing Mail quota

Hi.
Is there any way to setup outgoing Mail quota for a specific user?? We want to set a limit in the number of outgoing Mail for a specific user.
Thanx Ram

[email protected] wrote:
Is there any way to setup outgoing Mail quota for a specific user?? We want to set a limit in the number of outgoing Mail for a specific user.If the user authenticates you can use a combination of a mapping table entry and metermaid to limit the number of external recipients (tcp_local) that a user can email e.g.
<mapping table entries>
FROM_ACCESS
! User authenticated (mail: [email protected], uid: shjorth)
! tag the *_ACCESS channel with USER_LIMIT followed by ^shjorth^
   *|SMTP*|*|tcp_*|*|[email protected]   $Y$TUSER_LIMIT^shjorth^
ORIG_SEND_ACCESS
! Check the number of outgoing messages sent, reject the message if exceed metermaid.table.out_limit.quota
  USER_LIMIT^*^tcp_*|*|tcp_local|*    $C$[IMTA_LIB:check_metermaid.so,throttle,out_limit,$0]$E$N$D100|Exceeded$ rate$ limit<metermaid settings>
./configutil -o metermaid.table.out_limit.data_type -v string
./configutil -o metermaid.table.out_limit.max_entries -v 200
./configutil -o metermaid.table.out_limit.options -v "nocase,penalize"
./configutil -o metermaid.table.out_limit.quota -v 10
./configutil -o metermaid.table.out_limit.quota_time -v 86400
./configutil -o metermaid.table.out_limit.type -v throttleThe above settings restrict a user to 10 external recipients (metermaid.table.out_limit.quota) in a 24 hour (metermaid.table.out_limit.quota_time) time frame.
Regards,
Shane.

Similar Messages

  • Tiger Server Outgoing Mail Stuck In Queue

    We are running Tiger Server 10.4.7 at our small school. All our incoming mail is suspended in queue. Our outgoing mail is just fine.
    I looked in the mail log and it shows a zillion:
    postfix/local[3144]: fatal: main.cf configuration error: mailboxsizelimit is smaller than messagesizelimit
    We have no limit set on the size of messages that can be received...so what gives? In Workgroup manager we have 0 set in mail quota for everyone. From serveradmin/maintenance/mail queue I tried to resend..but to no avail. Anyone have an idea of how to get the incoming mail flowing?
    John
    MacBook Pro   Mac OS X (10.4.7)  

    Here it is
    alias_maps = hash:/etc/aliases
    always_bcc = [email protected]
    command_directory = /usr/sbin
    config_directory = /etc/postfix
    content_filter = smtp-amavis:[127.0.0.1]:10024
    daemon_directory = /usr/libexec/postfix
    debugpeerlevel = 2
    enableserveroptions = yes
    inet_interfaces = all
    luser_relay = jpage
    mail_owner = postfix
    mailbox_transport = cyrus
    mailq_path = /usr/bin/mailq
    manpage_directory = /usr/share/man
    mapsrbldomains = bl.spamcop.net,sbl.spamhaus.org,cbl.abuseat.org,relays.ordb.org,dun.dnsrbl.net, spam.dnsrbl.net,list.dsbl.org,dnsbl.njabl.org,pm.blitzed.org,xbl.spamhaus.org,wi ll-spam-for-food.eu.org,bl.spamcannibal.org,sbl-xbl.spamhaus.org
    messagesizelimit = 104857600
    mydestination = $myhostname,localhost.$mydomain
    mydomain_fallback = localhost
    myhostname = mehermontessori.org
    mynetworks = 127.0.0.1/32,24.205.128.85,63.193.132.13,63.193.132.9,63.193.132.10
    mynetworks_style = host
    newaliases_path = /usr/bin/newaliases
    ownerrequestspecial = no
    queue_directory = /private/var/spool/postfix
    readme_directory = /usr/share/doc/postfix
    recipient_delimiter = +
    relayhost =
    sample_directory = /usr/share/doc/postfix/examples
    sendmail_path = /usr/sbin/sendmail
    setgid_group = postdrop
    smtpdclientrestrictions = permit_mynetworks rejectrblclient bl.spamcop.net rejectrblclient sbl.spamhaus.org rejectrblclient cbl.abuseat.org rejectrblclient relays.ordb.org rejectrblclient dun.dnsrbl.net rejectrblclient spam.dnsrbl.net rejectrblclient list.dsbl.org rejectrblclient dnsbl.njabl.org rejectrblclient pm.blitzed.org rejectrblclient xbl.spamhaus.org rejectrblclient will-spam-for-food.eu.org rejectrblclient bl.spamcannibal.org rejectrblclient sbl-xbl.spamhaus.org hash:/etc/postfix/smtpdreject permit
    smtpdenforcetls = no
    smtpdpw_server_securityoptions = cram-md5
    smtpdrecipientrestrictions = permitsasl_authenticated,permit_mynetworks,reject_unauthdestination,permit
    smtpdsasl_authenable = yes
    smtpdtls_certfile = /etc/postfix/server.pem
    smtpdtlsloglevel = 0
    smtpduse_pwserver = yes
    smtpdusetls = no
    unknownlocal_recipient_rejectcode = 550

  • Dislaimer for all outgoing mails, excepting some domains?

    I'm still trying to add a Disclaimer to all outgoing mails. Actually, I need some help to add such a Disclaimer to nearly all outgoing mails, excepting some specific domains and for the right syntax:
    I know that I can add a message filter with the action 'add-footer' through CLI like this:
    if (recv listener == "OutboundMail" AND (not only-body-contains ('some unique text from my company disclaimer'),1)
    {add-footer('name of previously in GUI added dislcaimer-text');}
    else
    { deliver();}
    My questions:
    a) How can I prevent such a Disclaimer for every recipient in the domain "@company-without-disclaimer.com"?
    b) How should I write that for multiple recipient-domains without disclaimer?
    c) Is it important to write the listener-name and the disclaimer-name in the above code with ' (single quote) or " (double quotes)?
    d) Are the brace brackets {} set correct?
    e) Should I enter the entire disclaimer-text for the body-scan? I'm not sure if our actually one is 'unique' - maybe other companies has the same or a very similar one. Should I add multiple parts to looking for? How do you do that?
    Thank you for every help in advance!

    I can't figure out how to add the NOT-command.
    It works for me as written in my previous example.
    And could you please tell me something to my other questions c), d) and e)?
    "C" and "d" are very basic questions documented in the "Message Filters" section of the Advanced User Guide. Single or double quotes are both fine. The curly braces are probably OK as you've written them, but putting whitespace around them might be necessary (the docs don't say).
    As for the disclaimer text, that's hard to get perfect. It depends on your threat model. If you just want to be reasonably well assured that it gets put in, then pick out some bit of the disclaimer that is unlikely to appear elsewhere and check for that. But if you want to make sure that your own people can't spoof the process by embedding that bit in a message in order to avoid getting the disclaimer (not a likely threat in my opinion), then you'd need to check for the whole thing. Depending on how long it is, it might be safer to check for it piecemeal rather than all at once. I really can't say since I've never tried this. Or you could just add the footer unconditionally. At worst, you'd only end up with multiple instances of the footer in some messages, and it would only be in those messages which pass through your ESA more than once.

  • My outgoing mail is not working after the upgrade OS to mavericks. my mail client version is 7.1 . please help me resolve this issue

    My outgoing mail is not working after the upgrade OS to the mavericks. my mail client version is 7.1 . please help me out resolve this issue

    Please let me know , How we can reinstall apple mail ? .
    1 . We updated OS to mavericks few machine in last december and still does't works SMTP (Out going mail) on those MAC.
    2.  After that most recently we updated OS to mavericks few machine those are working will with SMTP server .
             a)Not showing any SMTP connection in TCP trace ,
             b) Connection docter every time Says "Connecting to the server "
    3, Then we have installed thunderberd (another mail) client on maverick os, which OS related to apple mail client not woking . It seems other mail client is working well with SMTP server .
    Please help me .
    Thanks,
    Ranesh..

  • My MacBook pro has stopped connecting to the outgoing mail server smpt (Tiscali) server, still receives mail fine, and connects to the web. Any suggestions welcome.

    My MacbookPro has always worked fine, receiving and sending emails through my server,Tiscali.  I took it to France for a few days, and was able to receive emails and use the web (through the wireless router and server in our accomodation), although as usual when away from home, I couldn't send emails. I tried to set up a new outgoing email route using O2 (as suggested by a web article), but it didn't work, so I deleted it, and used Tiscali webmail to send emails.
    When I returned home, I selected my usual outgoing server (Tiscali), but found to my great surprise, that I could no longer send emails - Mail timed out, 'unable to connect'. I noticed when clicking on: Mail - Preferences, that in the outgoing mail smpt box, Tiscali appeared, as usual, but now was followed by (Offline)
    Receiving emails and web connections have remained fine.
    I've checked with Tiscali, and they can't find any problem with their server or my settings.  Grateful for any suggestions about possible causes for this problem, and how to fix it.
    Joe

    I have just tried attaching the ethernet cable to the MacBook to see what happens. The system is fine, but when starting Mail, it never opens and locks up. You eventually just have to force quit out of the program.

  • Since 10.5.6 outgoing mail slow ??

    Since moving to 10.5.6 my outgoing mail is slower.
    Previously if I sent just a simple email with just a few lines of text it would go instantly.
    Now the same type of message seems to take anywhere up to 20 secs to go and during that time I get the spinning graphic next to the out folder or sent folder.
    Not the spinning beach ball of death, just the normal spinning graphic which I expect to get when sending an email with a large attachment or lots of graphics.
    Has anyone else noticed this ?

    I am quite certain that I had the sound effects check box in system preferences activated prior to the 10.5.6 upgrade as I had the empty trash sounds activated. After the upgrade, something during the install process unselected this check box in system preferences because I noticed I had lost the internal Mail sounds as well as the sound for emptying the trash. When I checked preferences in Mail the check box for "play sounds in mail" was still checked but there were no more sounds. It seems odd to me that you now have to go to two different places to turn on the sound feature in Mail whereas before it was only one checkbox. How is it fixing a bug by requiring two steps instead of one? Minor point, but it is rather confusing and convoluted.

  • Outgoing mail server setup

    Hello everyone,
    I am having problems with setting up the e-mail response.
    How do you authenticate the smtp server from FCS?
    In the outgoing mail server, I put "smtp.broadband.myISPprovider.com" - string I got from them. There is nowhere in FCS to put user name and password for authentication.
    The e-mail response does not even show in the "View All jobs" window like every other response.
    I tried every flavor of the string, including the port :587 , my e-mail address and such with no luck.
    What am I missing?
    If anyone could help, please.
    Thanks
    Radek

    Thanks Simon,
    I've just spoken to Apple and sure enough, the outgoing mail needs to go through an open relay server for it to work. Well..., open relay servers are getting blacklisted by most ISPs because of all the spam. I also spoke to my ISP and they do not offer any open relay so I'm stuck. I don't want to leave our system vulnerable by going through some shady open mail server. Apple needs to figure out how to make the authentication possible from FCS.
    Thanks again
    Radek

  • Can I set my iCloud email as the outgoing mail server for my google apps email account in Mac Mail?

    I have a google apps email account from an old client, all my work emails have been going to it for years. As I'm no longer affiliated with this client I'd like to make a transition to using my iCloud account for work. I asked people to use my iCloud address but as they've been using my google apps address for years it's what automatically comes up when they type my name.
    I figure the easiest way to make a transition is if I reply to all the emails that arrive at my old address from my iCloud address and gradually they will start using my new address without realising it. But I can't find a simple way to do this.
    In Mac Mail preferences > accounts > Google IMAP (my old account name) > Account information > Outgoing Mail server (SMTP) I'd like to set my iCloud SMTP server. But although my iCloud account uses its own outgoing mail server for its own account , it is not in the server list when I select my google account. I've tried to add it to the server list as smtp.mail.me.com but it caused my whole iCloud account to give me error messages until I force quit Mail...
    Any ideas?

    In iCloud/Mail, have you tried going to Preferences (select with gear at lower left)/Composing and setting a Send from address there?

  • How do I change my password on the outgoing mail server?

    Getting a "Cannot Send Mail.  The user name or password for "SMTP:[email protected]@smtp.aol.com" is incorrect" and I can not send any mail messages.  The Outgoing mail server data is greyed out so I can not make changes.  What do I do?

    If you cannot access the SMTP server that way, then you need to remove the account from the phone and add it back again from scratch.

  • Outlook 2007 - Outgoing mail server from a 3rd party

    I tried to set up the outgoing mail server for my Outlook 2007 with a 3rd party mail server. e.g. mail.xxxx.com, and I could not send the e-mail at all. If I set up the  outgoing mail server as outgoing.verizon.net, I can send the email to everyone else but not to this 3rd party mail server mail.xxxx.com. I received the undeliverable message from Verizon that the mail was rejected due to not being able to log on to this 3r party mail server. I am working for this company from home and it requires me to set up this for my outgoing mail server. Does anyone know how to fix this, including specifying what needs to be done at the 3rd party mail server to change to accept emails sent from outgoing.verizon.net? Thank you in advance. Andy

    Port 25 is the standard for SMTP, although some now use a submission port, 587. I know port 25 off network is blocked for residential users, I don't know if 587 is blocked off network because I have never tried it. I suspect it is. Verizon is by no means the only ISP to do this.
    Business accounts do not have blocked ports as far as I know, so if you have a business account, you are free to communicate using port 25 anywhere.
    Verizon has recently gone to non-standard port assignments for SMTP and POP servers. see
    http://www22.verizon.com/ResidentialHelp/FiOSInternet/Email/Setup+And+Use/QuestionsOne/124289.htm?CM...

  • Just changed outgoing mail server now unable to Send to old contacts

    Please see error message below:
    "This message could not be delivered and will remain in your Outbox until it can be delivered.
    The server "smtp.snet.net" did not recognize the following recipients:"
    These however are all address that I have previously mailed to and are suddenly not working.
    Thanks for the help. Please reply to [email protected]
    Karen

    Howdy andy237,
    The article linked below details how to go about using Connection Doctor in Mail to determine the cause of your outgoing mail servers being offline,  as well as detailing methods for resolving the issue.
    OS X Mail: Troubleshooting sending and receiving email messages
    http://support.apple.com/en-us/TS3276
    Cheers,
    Allen

  • What is my outgoing mail server for setting up a new account in Mail?

    Hi, I'm trying to set up a new account in Mail so that I check my school e-mail from that application and I've figured out what my incoming mail server is, but what where would I find the outgoing mail server if I want to send through Mail?
    Thanks

    Welcome to Apple Discussions!
    Ask the company providing you internet juice to get online. If it is Comcast, it typically is smtp.comcast.net or mail.comcast.net. If it is Verizon, it is outgoing.verizon.net. If it is someone else it is some SMTP server that is assigned by the company that you pay your bills to get online with.

  • Mail Server "Type" and Mail Server "Address" for Incoming & Outgoing Mail

    First, the only browser I use is Mozilla's Firefox, the best browser hands down. Second, I have both a Yahoo email account and a Google "gmail" account that I use regularly (daily). I am trying to set up a mail washing program to rid myself of these ridiculous spammers & scammers, however I need to the the Incoming & Outgoing mail server "type" & "address" to do this and I seem to have guessed the yahoo settings, but I can't seem to get the Google gmail account set up properly. Yahoo settings that worked are: Server Type="POP3" and Server Address="pop.mail.yahoo.com", with advanced settings: Secure Authentication=Required, Secure Connection (SSL)=Required, Store Cached Emails=Yes, Server Port Number=995 (set), Pipelining=Enabled. The equivalent settings for the Google gmail account result in an error message = "Failed to log into POP3 Server". Of course user name & password triple checked, Type=POP3, Address=pop.mail.gmail.com, and , Address="pop.gmail.com" tried also, Port and other settings the same. Where can I find this info for both accounts? Tanks a million! -jw

    Yahoo and Gmail support should be able to help you.
    Not related to Firefox support, web mail doesn't use POP or SMTP protocols which is what email clients such as Thunderbird use for communicating with email servers.

  • What are the settings for the outgoing mail server for icloud on Outlook for Mac, what are the settings for the outgoing mail server for icloud on Outlook for Mac

    what are the settings for the outgoing mail server for icloud on Outlook for Mac, what are the settings for the outgoing mail server for icloud on Outlook for Mac

    iCloud Mail Settings

  • How do I fix my iPod touch's problem with hotmail outgoing mail server?

    I have just received a new replacement iPod touch 8Gb.
    On my old model I used the house wifi network to connect to HOTMAIL in the mail app it would set the account up immediately and work perfectly.
    This time, when I tried to set the account up I had a long delay while it verified account details. Then after opting to set up account without using SSL an account was generated with an error message to say I may not be able to send or receive mail.
    Incoming mail is OK, outgoing is not working.
    The error message told me that I needed to configure my outgoing mail server.
    My default outgoing server is set to smtp.live.com and works on port 587.
    I have an additional server set to 'on', which is also smtp.live.com working on port 465, which was set up when I tried to alter the port number on the default server. Still no outgoing mail.
    Any suggestions?

    Followed your instructions and again, account verification failed using SSL.
    I chose to create without SSL and got the following message:
    'The SMTP server 'smtp.live.com' is not responding'. I accepted the details,
    the email Inbox populated, and everything looks normal.
    Same error is occuring:
    'Connection to outgoing server 'smtp.live.com' failed. Additional outgoing mail servers can be configured in settings>mail,contacts and calendars'
    The settings are as follows:
    Incoming mail server
    Host Name: pop3.live.com
    username: is correct
    password: is correct
    Outgoing SMTP:
    Primary server
    host name: smtp.live.com
    username: is correct
    password: is correct (has been re-entered just in case)
    Use SSL: OFF
    Authentication: password
    server port 587
    I have duplicate SMTP servers listed under 'Other SMTP servers' with exactly the same details as above so it seems as if the iPod is retaining some settings even after I delete account.
    Also, I wonder if there is anything I need to get the network administrator to do, because he did ask for the Wi-Fi address of my previous iPod touch could it just be a case of allowing it as a specific device on our network?

Maybe you are looking for

  • How can I Display my Reports in Excel sheet?

    Hello, I have developed my reports using oracle report Developer 6i, I am getting output in PDF and HTML CSS by the the parameter DESTYPT=HTML CSS/PDF through web. 1.Now I want to show reports in Excel sheet also through web using 9 Internet Developm

  • Need help retrieving 'backed-up' iWeb files

    In anticipation of iweb going away, I backed up my iweb files to an external drive.  Now, having purchased a brand new imac desktop computer, it did not come with iweb software. So, how do i "restore" any of my iweb files to the new imac desktop so t

  • How to hide SAP logo ?

    Hi , After login in the portal SAP logo comes in heading tab . How to hide that SAP logo?

  • Boot from external USB disk

    Is there any way to boot from an external USB disk formatted in NTFS or UFS (CD/DVD format)? Basically my idea was to be able to boot the Win7 install image from an USB device. I tried many different ways, I even have my old internal HDD with the boo

  • Estimating the growth of repository db

    Hi all, Is there any way to estimate the size of database growth for repository database. i have maually created database and going to monitor 20 targets approx intial size is 1.5 gb of my db. what is the maximum size it can grow upto any guidelines.