@@ -128,14 +128,14 @@ Basic Installation Steps
128128------------------------
129129
130130To install the Roundup support code into your Python tree and
131- Roundup scripts into /usr/local/ bin (substitute that path for whatever is
131+ Roundup scripts into /usr/bin (substitute that path for whatever is
132132appropriate on your system). You need to have write permissions
133133for these locations, eg. being root on unix::
134134
135135 python setup.py install
136136
137137If you would like to place the Roundup scripts in a directory other
138- than ``/usr/local/ bin``, then specify the preferred location with
138+ than ``/usr/bin``, then specify the preferred location with
139139``--install-script``. For example, to install them in
140140``/opt/roundup/bin``::
141141
@@ -508,12 +508,12 @@ As a mail alias pipe process
508508~~~~~~~~~~~~~~~~~~~~~~~~~~~~
509509
510510Set up a mail alias called "issue_tracker" as (include the quote marks):
511- "``|/usr/bin/python /usr/local/ bin/roundup-mailgw <tracker_home>``"
512- (substitute ``/usr/local/ bin`` for wherever roundup-mailgw is installed).
511+ "``|/usr/bin/python /usr/bin/roundup-mailgw <tracker_home>``"
512+ (substitute ``/usr/bin`` for wherever roundup-mailgw is installed).
513513
514514In some installations (e.g. RedHat 6.2 I think) you'll need to set up smrsh so
515515sendmail will accept the pipe command. In that case, symlink
516- ``/etc/smrsh/roundup-mailgw`` to "``/usr/local/ bin/roundup-mailgw``" and change
516+ ``/etc/smrsh/roundup-mailgw`` to "``/usr/bin/roundup-mailgw``" and change
517517the command to::
518518
519519 |roundup-mailgw /opt/roundup/trackers/support
@@ -620,9 +620,9 @@ As a regular job using a mailbox source
620620~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
621621
622622Set ``roundup-mailgw`` up to run every 10 minutes or so. For example
623- (substitute ``/usr/local/ bin`` for wherever roundup-mailgw is installed)::
623+ (substitute ``/usr/bin`` for wherever roundup-mailgw is installed)::
624624
625- 0,10,20,30,40,50 * * * * /usr/local/ bin/roundup-mailgw /opt/roundup/trackers/support mailbox <mail_spool_file>
625+ 0,10,20,30,40,50 * * * * /usr/bin/roundup-mailgw /opt/roundup/trackers/support mailbox <mail_spool_file>
626626
627627Where the ``mail_spool_file`` argument is the location of the roundup submission
628628user's mail spool. On most systems, the spool for a user "issue_tracker"
@@ -632,10 +632,10 @@ As a regular job using a POP source
632632~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
633633
634634To retrieve from a POP mailbox, use a *cron* entry similar to the mailbox
635- one (substitute ``/usr/local/ bin`` for wherever roundup-mailgw is
635+ one (substitute ``/usr/bin`` for wherever roundup-mailgw is
636636installed)::
637637
638- 0,10,20,30,40,50 * * * * /usr/local/ bin/roundup-mailgw /opt/roundup/trackers/support pop <pop_spec>
638+ 0,10,20,30,40,50 * * * * /usr/bin/roundup-mailgw /opt/roundup/trackers/support pop <pop_spec>
639639
640640where pop_spec is "``username:password@server``" that specifies the roundup
641641submission user's POP account name, password and server.
@@ -646,10 +646,10 @@ As a regular job using an IMAP source
646646~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
647647
648648To retrieve from an IMAP mailbox, use a *cron* entry similar to the
649- POP one (substitute ``/usr/local/ bin`` for wherever roundup-mailgw is
649+ POP one (substitute ``/usr/bin`` for wherever roundup-mailgw is
650650installed)::
651651
652- 0,10,20,30,40,50 * * * * /usr/local/ bin/roundup-mailgw /opt/roundup/trackers/support imap <imap_spec>
652+ 0,10,20,30,40,50 * * * * /usr/bin/roundup-mailgw /opt/roundup/trackers/support imap <imap_spec>
653653
654654where imap_spec is "``username:password@server``" that specifies the roundup
655655submission user's IMAP account name, password and server. You may
0 commit comments