Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Next revisionBoth sides next revision
howtos:macosx [2009/09/27 02:19] – update for v1.1.1 amatubuhowtos:macosx [2015/04/11 09:38] amatubu
Line 1: Line 1:
 ====== Using POPFile on Mac OS X Platforms ====== ====== Using POPFile on Mac OS X Platforms ======
  
-POPFile v1.1.0 comes with the first official Mac OS X installer! You can now install POPFile on your Mac easily.  **POPFile v1.1.is now compatible with Mac OS X 10.(Snow Leopard)**.+POPFile v1.1.0 comes with the first official Mac OS X installer! You can now install POPFile on your Mac easily.  **POPFile v1.1.is compatible with Mac OS X 10.10 (Yosemite)**.
  
 ===== System Requirements ===== ===== System Requirements =====
Line 9: Line 9:
   * Mac OS X 10.3.9 or later.   * Mac OS X 10.3.9 or later.
  
-  * The [[/download|latest POPFile release]]. \\ **Note:** there are two versions of Mac OS X installer. One is for Mac OS X 10.6 (Snow Leopard) and the other is for older versions of Mac OS X.+  * The [[/download|latest POPFile release]]. \\ **Note:** there are three versions of Mac OS X installer. One is for Mac OS X 10.7 (Lion), one is for Mac OS X 10.6 (Snow Leopard) and the other is for older versions of Mac OS X.
  
   * An e-mail account that uses the POP3 protocol (most accounts do, although you can't use POPFile with web-based services like Hotmail and Yahoo! Mail without extra software. See [[:HowTos | Configuring Proxies & Firewalls]]).   * An e-mail account that uses the POP3 protocol (most accounts do, although you can't use POPFile with web-based services like Hotmail and Yahoo! Mail without extra software. See [[:HowTos | Configuring Proxies & Firewalls]]).
Line 23: Line 23:
   * The installer also installs XMLRPC module, NNTP/SMTP proxies and IMAP module.   * The installer also installs XMLRPC module, NNTP/SMTP proxies and IMAP module.
  
-  * If you need the optional SSL Support, you can install it using //POPFile-addssl.pkg// installer. The module will allow POPFile to use SSL when connecting to a mail server, an additional 1.6MB of disk space is required for the extra Perl components and SSL libraries.+  * The SSL Support is no longer an option. POPFile installer will install the modules which are needed to use SSL connections.
  
   * The word lists (called the corpus) used to classify your email will take some additional space depending on how much mail you use to train POPFile and how many buckets you create. POPFile keeps a temporary copy of recent mail (the Message History) for a few days to make it easy to correct any classification errors so some extra space is required for these recent messages. For some users only a few extra MB will be sufficient for the corpus and Message History, for others an additional 100 MB may be required.   * The word lists (called the corpus) used to classify your email will take some additional space depending on how much mail you use to train POPFile and how many buckets you create. POPFile keeps a temporary copy of recent mail (the Message History) for a few days to make it easy to correct any classification errors so some extra space is required for these recent messages. For some users only a few extra MB will be sufficient for the corpus and Message History, for others an additional 100 MB may be required.
Line 140: Line 140:
  
  
 +==== Creating a POPfile Startup Item for Mac OS X 10.10 (Yosemite) ====
  
 +TODO
 +  - Create the Mac OS X POPFile <nowiki>LaunchDaemons</nowiki> file:
 +  - Create a plain text file named %%"popfile.plist"%% in the %%/Library/LaunchDaeons%% folder with this content: <code><?xml version="1.0" encoding="UTF-8"?>
 +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
 +<plist version="1.0">
 +<dict>
 + <key>Disabled</key>
 + <false />
 + <key>EnvironmentVariables</key>
 + <dict>
 + <key>ITAIJIDICTPATH</key>
 + <string>/Library/POPFile/kakasi/itaijidict</string>
 + <key>KANWADICTPATH</key>
 + <string>/Library/POPFile/kakasi/kanwadict</string>
 + <key>MECABRC</key>
 + <string>/Library/POPFile/mecab/etc/mecabrc</string>
 + <key>POPFILE_ROOT</key>
 + <string>/Library/POPFile/</string>
 + <key>POPFILE_USER</key>
 + <string>/Library/POPFile/</string>
 + <key>VERSIONER_PERL_VERSION</key>
 + <string>5.18</string>
 + </dict>
 + <key>StandardErrorPath</key>
 + <string>/Library/Logs/POPFile/error.log</string>
 + <key>StandardOutPath</key>
 + <string>/Library/Logs/POPFile/console.log</string>
 + <key>Label</key>
 + <string>org.getpopfile.popfile</string>
 + <key>KeepAlive</key>
 + <false />
 + <key>RunAtLoad</key>
 + <true />
 + <key>ProgramArguments</key>
 + <array>
 + <string>/usr/bin/perl</string>
 + <string>-I/Library/POPFile/lib</string>
 + <string>/Library/POPFile/popfile.pl</string>
 + <string>-logger_logdir</string>
 + <string>/Library/Logs/POPFile/</string>
 + </array>
 +</dict>
 +</plist>
 +</code>
 +  - In a terminal window, enter these commands: <code>cd /Library/LaunchDaemons
 +sudo chown root:wheel popfile.plist
 +sudo chmod 644 popfile.plist
 +sudo launchctl load /Library/LaunchDaemons/popfile.plist
 +</code>
 +  - Finally, to start up POPFile without rebooting enter this terminal command: <code>sudo launchctl start org.getpopfile.popfile</code>
  
-==== Creating a POPfile Startup Item for Mac OS X ====+==== Creating a POPfile Startup Item for Mac OS X 10.9 (Mavericks or before) ====
  
 **NOTE**: You should be logged into an administrator account for this procedure. **NOTE**: You should be logged into an administrator account for this procedure.
Line 219: Line 270:
         Localizable.strings</code>         Localizable.strings</code>
   - In a terminal window, enter these commands: <code>cd /Library/StartupItems   - In a terminal window, enter these commands: <code>cd /Library/StartupItems
-sudo chown -R root.admin popfile +sudo chown -R root:wheel POPfile 
-cd popfile +cd POPfile 
-sudo chmod 754 popfile+sudo chmod 754 POPfile
 sudo chmod 644 StartupParameters.plist</code> sudo chmod 644 StartupParameters.plist</code>
   - Finally, to start up POPFile without rebooting enter this terminal command: <code>sudo /Library/StartupItems/POPfile/POPfile start</code>   - Finally, to start up POPFile without rebooting enter this terminal command: <code>sudo /Library/StartupItems/POPfile/POPfile start</code>
 
howtos/macosx.txt · Last modified: 2015/04/11 12:07 by 127.0.0.1
Old revisions

Should you find anything in the documentation that is incomplete, unclear, outdated or just plain wrong, please let us know and leave a note in the Documentation Forum.

Recent changes RSS feed Donate Driven by DokuWiki
The content of this wiki is protected by the GNU Fee Documentation License