Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'Remove spam from POP server after Mail download' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Remove spam from POP server after Mail download
Authored by: stevewest on Nov 15, '07 06:42:33AM

Could somebody please provide a quick walkthrough on installing mpop?

I just installed Xcode Tools then tried to compile mpop using "./configure". The configure process and compile seemed to run without errors, but I can't find the mpop unix executable or invoke it in terminal.

Obviously I'm missing something. Should I be unpacking it to a particular directory before installing?



[ Reply to This | # ]
Remove spam from POP server after Mail download
Authored by: SJT on Nov 16, '07 08:58:11AM
Once you've done
./configure
run make, and make install
make; make install
. if make install doesn't install the binary into your search path (where bash looks for executables), you can just copy it to /usr/local/bin (one of the directories in the path). Once you've done this
which mpop
should list mpop as being in /usr/local/bin

[ Reply to This | # ]