Compatible platforms for Asti Fleet Management Asti Fleet Management is compatible with the following platforms: Microsoft Windows 7, Windows 8.1, and Windows 10 Mac OS X, version 10.11 and above. IOS, version 10.0, and above. Android, version 5.0, and above. The Happy Mac icon was the normal bootup screen of the Macintosh, it was also used on floppy disks of System softwares. The Mac OS logo and rebranding marks it's debut on version 7.5.1. Released on March 23, 1995. This logo was used for the Mac OS X v10.0, code-named 'Cheetah', and v10.1, code-named 'Puma'. These versions were preceded by the Mac OS X Public Beta, code-named 'Kodiak'. Courier for Mac relates to Internet & Network Tools. Courier was developed to work on Mac OS X 10.7.4 or later. Our built-in antivirus scanned this Mac download and rated it as 100% safe. The unique ID for this app's bundle is com.realmacsoftware.courier.
Target
I wanted to have my own IMAP-server both for archival purposes (on my own machine I have practilcally unlimited space to save e-mail) as well as a mean to collect mail I receive on other accounts into one unified storage. Furthermore I want a better way to handle mail than common e-mail clients like AppleMail, Thunderbird or Eudora offers - currently I am looking into Zoë (Google you e-mail) and Mulberry (the superior, with a good margin, IMAP-client)
I will do this step by step and update this document as I progress:
Install Courier-IMAP
Arrange a simple ugly setup to fetch and filter mail
Make Courier use (x)inetd
Setup a stable mail fetching function, probably with fetchmail or something similar
Install server side filtering (sieve)
Install server side anti-spam means
Setup an LDAP-server that cooperates with the Address Book in Mac OS X, the server side anti-spam functionality and the e-mail clients built in address books.
Enable SSL-support.
Purposes
»Unlimited» space on an IMAP-server
Robust server side filtering
Tight integration between MUA:s, address books and IMAP-server
Improved (faster and cheaper) e-mailhandling when you are on using a mobile setup (in my case I frequently use slow and expensive GPRS-connections when I am abroad). With this setup you can user server side filtering of mail and when you are on the road you just setup your MUA to ignore less important mailboxes.
Install DarwinPorts
Note how you got a new Startup Item in /Library/StartupItems
Use DarwinPorts to install courier port install courier-imap
Now you have a lot of courier-stuff in your /opt/local. The following are of interest:
in /opt/local/bin/
imapd
maildirmake
in /opt/local/etc/courier-imap/
imapd
in /opt/local/libexec/
imapd.rc
Before we begin to dissect these we first have to understand something else:
DarwinPorts StartupItem
The DarwinPorts StartupItem basically runs all items in (typically) /opt/local/etc/rc.d/ with the verb start. With that in mind we can look into the start up procedure of Courier-IMAP and its startup scripts:
imapd-sh/imapd-ssl.sh
When you install Courier-IMAP the following script are stored in /opt/local/etc/rc.d/ and are therefore executed(with the verb start) when the computer boots:
imapd-ssl.sh
imapd.sh
These scripts are quite similar, they source/opt/local/etc/courier-imap/imapd (and imapd-ssl) and then execute /opt/local/libexec/imapd.rc start (imapd-ssl.rc). Now that we know this we can go back to the files of interest mentioned above. We begin with last of the two files the start scripts uses, the run command files:
imapd.rc/imapd-ssl.rc
These run command files set up some environment variables and then launches the executable with a few switches.
imapd/imapd-ssl in /opt/local/etc/courier-imap/
These are the setting files for Courier-IMAP. They are fairly well documented/commented. I made a few changes:
ADDRESS
I changed its value from 0 to 127.0.0.1. This way you can have a secure setup without having to mess with the SSL-setup1 at the moment since you only allow connections from localhost which forces clients to tunnel their traffic to the machine where Courier-IMAP is running, e.g., by SSH. If the tunnel is setup as it should then this method is perfectly safe.
IMAP_EMPTYTRASH=Trash:7
I commented this setting to make the server behave more like regular MUA:s, i.e., not deleting messages in the trash automatically.
Note that these configration files have the same names as the executables in /opt/local/bin/.
imapd in /opt/local/bin/
This is the actual IMAP-server executable. You can, but I advise against it, start this directly from the command line. It has an extensive man-page.
maildirmake
You have to run this for each user before they can log in. I have only tried to log in with Mozilla Thunderbird without first running maildirmake for a certain user and at least Thunderbird gives an error message indicating, incorrectly, that your password is erroneous if you don't do this. Simply cd to each user's home directory and run maildirmake Maildir and it will create a directory called Maildir with three sudirectories, cur, new and tmp.
You can give another name as argument to maildirmake but then, in my experience, you can not login. It seems as Courier-IMAP has hard coded the name of the mail directory because I can not find any setting for it either. If you know anything about this, please let me know.
Courier (lankoski) Mac Os X
Start the server [an error occurred while processing this directive]
If you reboot the server will start automatically but easier is just to runt the startup script in /opt/local/etc/rc.d/. Since we , for the moment, re happy with just using the plain text imapd simply start the server from the command line:
Courier (lankoski) Mac Os 11
/opt/local/etc/rc.d/imapd.sh start
If you take a look with top you will notice a few new processes, e.g., imapd, courierlog, couriertcp, authdemon and maybe a few more. You can verify that the server is running with
telnet localhost 127.0.0.1 143
You should see something like this:
telnet localhost 143 Trying ::1... telnet: connect to address ::1: Connection refused Trying 127.0.0.1... Connected to localhost. Escape character is '^]'. * OK [CAPABILITY IMAP4rev1 UIDPLUS CHILDREN NAMESPACE THREAD=ORDEREDSUBJECT THREAD=REFERENCES SORT QUOTA IDLE STARTTLS] Courier-IMAP ready. Copyright 1998-2003 Double Precision, Inc. See COPYING for distribution information.
You can also make sure that you are secure by logging into another computer and try to telnet from that computer to your IMAP-server on port 143.
Now create a new account in your MUA and set it up for your new IMAP-server and play around (try to transfer som junk mail from already existing accounts/mailboxes to your new IMAP-server, create a few folders on the server etc).
This is a very simple step that you probably don't need to have documented if you have gone this but anyway...
This is how I did it: create a filter with the highest/first priority in your regular MUA. Make that filter transfer a copy (it is important that it is a copy or elsewise you might lose mail if the setup proves to be unstable or unreliable) of every received mail to some folder on your IMAP-server.
Footnotes
adjust the values in /opt/local/etc/courier-imap/imapd.cnf to match your name, location etc.
run /opt/local/sbin/mkimapdcert as root. It does not take any arguments. This will generate a certificate that works for IMAP and is stored in /opt/local/share/courier/imapd.pem
Note that the ssl-version won't start without this certifcate. Also note that you can run SSL and clear text versions of courier-imap in parallell.
Advertisement
Salon Booking Service Software v.4.5Web-based salon management software. You can use the web-service to show hourly availability. If you already have your own webpage you can add our online booking system to your own webpage.
Courier Software for Mac v.3.2CourierSoftware is an efficiency inducing management software designed to be used on Mac (OS X). This software can be easily used by any service that includes delivery as part of its operational services.
Cleaning Business Software v.1.0Our PHP script for the cleaning business will help you present your services, set prices, manage client requests, process different types of payments, etc. Control your business using an intuitive administration area and all features you might need!
Helprace by Satisware v.1Helprace is a cloud-based customer servicesoftware platform by Satisware. Helprace increases productivity of customer service agents, optimizes their daily workflows and keeps every ticket accounted for.
Lawn Care Software for MAC v.3.1Concerned on how to manage your lawn care business? As big a problem as it may seem, the answer today is very simple. The “Lawn Care Business Software” designed especially to be used on Mac (OS X).
Delivery Service v.2.01.01The program makes it possible to optimize all business processes of your delivery service. The system 'Delivery Service' helps to organize the operational work at every stage of the order process.
Cleaning Business Software for MAC v.3.1Cleaning software for Cleaning Business is yet another powerful program designed specifically to be used on Mac (OS X). Like any other services business, cleaning jobs require proper documentations pertaining to job scheduling and employee management alon ...
Live Chat Live Help v.2.2We are not priced 'per operator' or 'per user'. It's only $20 for an unlimited number of operators and users. This includes free upgrades. 1 operator? 10 operators? 100 operators? Doesn't matter. Our Live Help software features unlimited departments ...
Provide Support Live Chat v.5.7.3Provide Support is a global provider of Live Chat and Real-Time Website Monitoring software that allows businesses to provide instant online customer support and proactively sell their products and services. The software enables you to chat with your webs ...
AliveChat BETA v.3.0AliveChat allows you to connect with your web site visitors in real-time via a browser based chat interface. Your company representatives can now support customers while increasing operator productivity and reducing telephone and call center costs.
Service Booking Script v.1.0Our PHP-based service scheduling software is perfectly suited for websites offering services online but still lacking a booking and payment functionality. Add countless services, show availability, manage reservations, process various payments, etc.
Skymol Communicator Live Help Software v.2.0Skymol Communicator is a web-based customer service and live chat, live help system using Voice (VoIP), Video, Text Chat communication forms through your web site.Skymol offers on-demand live chat software, help desk software for online sales and ...
123 Live Help Chat Software Mac v.5.2123 Live Help Chat Software can show your website visitors a live agent which is just a click-away and enable your operators to live Text Chat/Video Chat with them. And SkypeIn Service enables your operators to call or answer visitors in text or ...
Web Help Desk Software for Mac OS X v.10.0.18.3The Web Help Desk software for Mac OS X offers an industry leading web-based help desk software feature set that allows you to dynamically assign, track and fulfill all of your technical support trouble tickets and customer service requests with ...
MIE CRM Software v.2MIE CRM Software delivers Customer Relationship Management across the sales, service, and marketing functions. This easy-to-use, full featured solution primarily aims to strengthen the sales sector and the customer support department of a commercial ...
Software Analytics SDK for Mac OS v.9.0.0.1Software Statistics Service is an software analytics for Mac OS and other platforms that provides comprehensive overview of desktop and mobile application usage. It collects all relevant information about software such as number of installations, ...
Salon Booking Service v.4.4Web-based salon management software. You can use the web-service to show hourly availability. If you already have your own webpage you can add our online booking system to your own webpage.
Internet marketing software three v.3.0This Internet marketing software allows you to perform searches against the real time search engines top 14. You enter a keyword, you choose a service among 15 options, the soft takes you directly to the results; no push button. Today's marketing ...
Proxy Pro 8.10 Remote Desktop Software v.8.10PROXY Pro 8.10 provides the software platform and tools to enable enterprises and other large organizations to host and operate their own, on-demand, web-based, in-house remote support service.
Taxi Scheduling Software for MAC v.3.2This Taxi Scheduling Software designed specifically to be used on Mac (OS X) is centered towards facilitating management of taxi services for both individuals and taxi service companies.
Courier Service Software software by TitlePopularityFreewareLinuxMac
Today's Top Ten Downloads for Courier Service Software
Pet Grooming Software for Mac Management, Organization, Administration are just the
Software Icons - Professional XP icons for Beautiful XP style icons for your for your software and
Standard Software Icons Standard Software Icons is large set of eye-caching
Salon Booking Service Web-based salon management software . You can use the
Stellar Phoenix Photo Recovery - MAC Photo Stellar Phoenix Photo Recovery Software recovers lost ,
Business Software Icons Business Software Icons presents an impressive
LiveCyberCash Video Chat Software Cross platform Video Chat Software that includes payment
123 Live Help Chat Software Mac 123 Live Help Chat Software can show your website visitors
Limo Booking Software If your company or client offers limousine services and
Software Icons Collection The Software Icons Collection is a suite of beautiful
Visit HotFiles@Winsite for more of the top downloads here at WinSite!