Sponsored Content
Top Forums UNIX for Dummies Questions & Answers Firefox: Setting about:config options upon install Post 302499314 by pludi on Thursday 24th of February 2011 04:28:14 AM
Old 02-24-2011
There should be a prefs.js somewhere in (not sure about the path) /usr/share/firefox/defaults/profile. That directory acts like the /etc/skel for new profiles. Add any options you need as user_prefs("key", value);
 

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

SSh install and config

Hi all........... I work for a big french car manufacturer. I'm supposed to put up a secure protocol, that means ssh. I'm looking for free ssh codes and binaries, and the install and config of it... Any help would be great... :confused: :confused: :confused: Thanx Jason (3 Replies)
Discussion started by: a_new_admin
3 Replies

2. UNIX for Advanced & Expert Users

I can't fire up MySql on my Fedora Server - Obvious config setting?

Hiya All, I can't fire up MySql on my FC-3 Server at work. I get the Error message at the end of this post. Looks like some Config problem on the Server itself. (Ie web server and MYSQL is all on the same box. I get the same errror when trying to fire up MYSQL at the Box, as well as... (2 Replies)
Discussion started by: marty 600
2 Replies

3. UNIX for Advanced & Expert Users

how to config ks.cfg for install another progra.

i create ks.cfg for automatic install for centos 5.2 it's work perfectky for cutom install linux package. and i want to install another program with shell scripts (assume test.tar include in DVD linux custom package)** single dvd include linux os and test.tar sample #!/bin/bash... (1 Reply)
Discussion started by: slackman
1 Replies

4. UNIX for Advanced & Expert Users

How to install firefox extensions for all users

Hello, I am wondering the "new way" to install firefox extensions for all users. From https://developer.mozilla.org/En/Command_Line_Options we can see that the "old way" is no longer available. I'm using the Lucid UNE to write this and note that it has these extensions installed for every... (3 Replies)
Discussion started by: Narnie
3 Replies

5. Linux

VMware install options

I am loyal fan of VMware, it's a stable, powerful s/f but recently, i found that they add a new function - "Easy Install". it's like a rapiXX, and force you to use it everytime when you install.:wall: It should have a place to disable This function. are there any bodies can tell me how to... (4 Replies)
Discussion started by: rookieabc
4 Replies

6. Shell Programming and Scripting

Setting options

I have the following code and want to change it set fdrwtag = `echo $f | awk '/drw/'` set fsmptag = `echo $f | awk '/smp/'` set rgdttag = `echo $f | awk '/rgdt/'` if ($fdrwtag != "") set fdrw = 1 if ($fsmptag != "") set fsmp = 1 if ($rgdttag != "") set rgdt = 1 I want... (1 Reply)
Discussion started by: kristinu
1 Replies

7. UNIX and Linux Applications

install multiple versions of firefox in linux

Since apt-get and yum won't let you install multiple versions of firefox I will explain how to here. 1. Go to this page and decide which version of firefox you want. ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases/ I used this one. ... (0 Replies)
Discussion started by: cokedude
0 Replies

8. Slackware

Firefox 8 install on slack 13.37

Slackware 13.37 stores Firefox 4 in different directories than is suggested for Mozilla says to use for Firefox 8.0 (/opt/firefox). Which should I use? If I use /opt/... how do I remove the old 4.0? Will this screw up the icons and will I need to reset them? How? (4 Replies)
Discussion started by: slak0
4 Replies

9. UNIX and Linux Applications

Firefox install old addons help

Can anyone tell me why the installing old addons method by changing the install.rdf max version is not working with Tab Mix Plus? I changed the maxVersion to both 17.* and 17.0. I get the error message: Tab mix plus could not be installed because it is not compatible with firefox 17.0. ... (2 Replies)
Discussion started by: cokedude
2 Replies

10. UNIX for Beginners Questions & Answers

Setting config database user and password using sed

Hello everybody, I need to modify 200 files using a patern matching, I would like to do it with sed but it's not working with the following syntax: sed -e 's/DATABASE_PASSWORD.*oldpass/DATABASE_PASSWORD__', 'newpass/g' config.php need to find: define("__DATABASE_PASSWORD__", ... (6 Replies)
Discussion started by: dco
6 Replies
SA-COMPILE(1)						User Contributed Perl Documentation					     SA-COMPILE(1)

NAME
sa-compile - compile SpamAssassin ruleset into native code SYNOPSIS
sa-compile [options] Options: --list Output base string list to STDOUT --sudo Use 'sudo' for privilege escalation --keep-tmps Keep temporary files instead of deleting -C path, --configpath=path, --config-file=path Path to standard configuration dir -p prefs, --prefspath=file, --prefs-file=file Set user preferences file --siteconfigpath=path Path for site configs (default: /etc/mail/spamassassin) --updatedir=path Directory to place updates (default: /var/lib/spamassassin/compiled/<perlversion>/3.003001) --cf='config line' Additional line of configuration -D, --debug [area=n,...] Print debugging messages -V, --version Print version -h, --help Print usage message DESCRIPTION
sa-compile uses "re2c" to compile the site-wide parts of the SpamAssassin ruleset. No part of user_prefs or any files included from user_prefs can be built into the compiled set. This compiled set is then used by the "Mail::SpamAssassin::Plugin::Rule2XSBody" plugin to speed up SpamAssassin's operation, where possible, and when that plugin is loaded. "re2c" can match strings much faster than perl code, by constructing a DFA to match many simple strings in parallel, and compiling that to native object code. Not all SpamAssassin rules are amenable to this conversion, however. This requires "re2c" (see "http://re2c.org/"), and the C compiler used to build Perl XS modules, be installed. Note that running this, and creating a compiled ruleset, will have no effect on SpamAssassin scanning speeds unless you also edit your "v320.pre" file and ensure this line is uncommented: loadplugin Mail::SpamAssassin::Plugin::Rule2XSBody OPTIONS
--list Output the extracted base strings to STDOUT, instead of generating the C extension code. --sudo Use sudo(8) to run code as 'root' when writing files to the compiled-rules storage area (which is "/var/lib/spamassassin/compiled/5.012/3.003001" by default). --quiet Produce less diagnostic output. Errors will still be displayed. --keep-tmps Keep temporary files after the script completes, instead of deleting them. -C path, --configpath=path, --config-file=path Use the specified path for locating the distributed configuration files. Ignore the default directories (usually "/usr/share/spamassassin" or similar). --siteconfigpath=path Use the specified path for locating site-specific configuration files. Ignore the default directories (usually "/etc/mail/spamassassin" or similar). --updatedir By default, "sa-compile" will use the system-wide rules update directory: /var/lib/spamassassin/compiled/5.012/3.003001 If the updates should be stored in another location, specify it here. Note that use of this option is not recommended; if sa-compile is placing the compiled rules the wrong directory, you probably need to rebuild SpamAssassin with different "Makefile.PL" arguments, instead of overriding sa-compile's runtime behaviour. --cf='config line' Add additional lines of configuration directly from the command-line, parsed after the configuration files are read. Multiple --cf arguments can be used, and each will be considered a separate line of configuration. -p prefs, --prefspath=prefs, --prefs-file=prefs Read user score preferences from prefs (usually "$HOME/.spamassassin/user_prefs") . -D [area,...], --debug [area,...] Produce debugging output. If no areas are listed, all debugging information is printed. Diagnostic output can also be enabled for each area individually; area is the area of the code to instrument. For more information about which areas (also known as channels) are available, please see the documentation at <http://wiki.apache.org/spamassassin/DebugChannels>. -h, --help Print help message and exit. -V, --version Print sa-compile version and exit. SEE ALSO
Mail::SpamAssassin(3) spamassassin(1) spamd(1) PREREQUESITES
"Mail::SpamAssassin" "re2c" "Mail::SpamAssassin::Plugin::Rule2XSBody" BUGS
See <http://issues.apache.org/SpamAssassin/> AUTHORS
The Apache SpamAssassin(tm) Project <http://spamassassin.apache.org/> COPYRIGHT
SpamAssassin is distributed under the Apache License, Version 2.0, as described in the file "LICENSE" included with the distribution. perl v5.12.1 2010-07-02 SA-COMPILE(1)
All times are GMT -4. The time now is 02:00 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy