<?xml version="1.0" encoding="UTF-8"?>

<rss version="2.0"
 xmlns:blogChannel="http://backend.userland.com/blogChannelModule"
>

<channel>
<title><![CDATA[RazmjenaVjestina: documents]]></title>
<link>https://saturn.ffzg.hr/razmjenavjestina/index.cgi?action=weblog_display;category=documents</link>
<description></description>
<pubDate>Wed, 01 Jun 2005 08:06:34 -0000</pubDate>
<webMaster>root@saturn.ffzg.hr</webMaster>
<generator>Socialtext Workspace v2.19.0.2</generator>

<item>
<title><![CDATA[FontsConf]]></title>
<link>https://saturn.ffzg.hr/razmjenavjestina/index.cgi?fontsconf</link>
<description><![CDATA[<div>Creator: TamTam Migration</div><hr/><div>Tags: BuD, DocumentS, MojSajt, RazmjenjivaciVjestina, TamTam</div><hr/><div class="wiki">
<br /><pre>
&lt;?xml version=&quot;1.0&quot;?&gt;
&lt;!DOCTYPE fontconfig SYSTEM &quot;fonts.dtd&quot;&gt;
&lt;fontconfig&gt;
  &lt;match target=&quot;font&quot;&gt;
   &lt;edit name=&quot;autohint&quot; mode=&quot;assign&quot;&gt;
    &lt;bool&gt;true&lt;/bool&gt;
   &lt;/edit&gt;
  &lt;/match&gt;
&lt;/fontconfig&gt;
</pre>
<br /><hr />
<p>
<a target="_blank" title="(external link)" href="http://www.razmjenavjestina.org/RazmjenjivaciVjestina/BuD/MojSajt/DocumentS/FontsConf">original<!-- wiki-renamed-hyperlink "original"<http://www.razmjenavjestina.org/RazmjenjivaciVjestina/BuD/MojSajt/DocumentS/FontsConf> --></a> <span class="nlw_phrase">Jun 1 3:06am<!-- wiki: {date: 2005-=06-=01 10:06:34 +0200} --></span></p>
</div>
]]></description>
<author>TamTam Migration</author>
<category>BuD, DocumentS, MojSajt, RazmjenjivaciVjestina, TamTam</category>
<guid isPermaLink="true">https://saturn.ffzg.hr/razmjenavjestina/index.cgi?fontsconf</guid>
<pubDate>Wed, 01 Jun 2005 08:06:34 -0000</pubDate>
</item>
<item>
<title><![CDATA[MplayerConfig]]></title>
<link>https://saturn.ffzg.hr/razmjenavjestina/index.cgi?mplayerconfig</link>
<description><![CDATA[<div>Creator: TamTam Migration</div><hr/><div>Tags: BuD, DocumentS, MojSajt, RazmjenjivaciVjestina, TamTam</div><hr/><div class="wiki">
<br /><pre>
autosync=0
cdrom-device=/dev/cdrom
channels=4
dvd-device=/dev/cdrom
#osdlevel=3
#sub-bg-color=250
sub-fuzziness=1
subalign=2
subfont-autoscale=1
brightness=15
#fbmode=&quot;1024x768-72&quot;
fstype=fullscreen
monitoraspect=16:9
screenw=1024
screenh=768
aspect=16:9
stereo=0
autosync=30
nojoystick=yes
nolirc=yes
noautosub=yes
ffactor=0.75
sub=yes
#subcp=latin1
subfont-encoding=iso8859-2
#subfont-blur=2
#subfont-osd-scale=6
#subfont-text-scale=5
#unicode=yes
#dr=yes
font=/home/bud/.mplayer/font/font.desc
</pre>
<br /><hr />
<p>
<a target="_blank" title="(external link)" href="http://www.razmjenavjestina.org/RazmjenjivaciVjestina/BuD/MojSajt/DocumentS/MplayerConfig">original<!-- wiki-renamed-hyperlink "original"<http://www.razmjenavjestina.org/RazmjenjivaciVjestina/BuD/MojSajt/DocumentS/MplayerConfig> --></a> <span class="nlw_phrase">May 9 11:23am<!-- wiki: {date: 2005-=05-=09 18:23:46 +0200} --></span></p>
</div>
]]></description>
<author>TamTam Migration</author>
<category>BuD, DocumentS, MojSajt, RazmjenjivaciVjestina, TamTam</category>
<guid isPermaLink="true">https://saturn.ffzg.hr/razmjenavjestina/index.cgi?mplayerconfig</guid>
<pubDate>Mon, 09 May 2005 16:23:46 -0000</pubDate>
</item>
<item>
<title><![CDATA[FireWall]]></title>
<link>https://saturn.ffzg.hr/razmjenavjestina/index.cgi?firewall</link>
<description><![CDATA[<div>Creator: TamTam Migration</div><hr/><div>Tags: BuD, DocumentS, MojSajt, RazmjenjivaciVjestina, TamTam</div><hr/><div class="wiki">
<br /><pre>
#!/bin/sh
#----
---------------------------------------------------------------
----
# beware, comments FOLLOW the rules, not precede them.
#
/sbin/iptables -F
/sbin/iptables -X block
#flush all rules first ...
#
#----
---------------------------------------------------------------
----
/sbin/iptables -t nat -A POSTROUTING -o ppp0 -j MASQUERADE
echo &quot;1&quot; &gt; /proc/sys/net/ipv4/ip_forward
#A little NAT, we'll need it, too.
#
#/usr/local/bin/iptables -t nat -A PREROUTING -i ! ppp0 -p tcp --dport 80 -j REDIRECT --to 194.152.207.52:4242
#some transparent proxying??
#
/sbin/iptables -t nat -A PREROUTING -i ! ppp0 -p tcp --dport 6667 -j DNAT --to-destination 192.168.1.1:7000
#irc port redirection?
#
/sbin/iptables -N block
#define our rule chain ...
#
#----
---------------------------------------------------------------
----
/sbin/iptables -A block -m state --state ESTABLISHED,RELATED -j ACCEPT
#accept _all_ established connections initiated by our side ...
#
/sbin/iptables -A block -m state --state NEW,ESTABLISHED,RELATED --protocol tcp --dport 113 -i ppp0 -j ACCEPT
/sbin/iptables -A block -m state --state NEW,ESTABLISHED,RELATED --protocol tcp --sport 113 -i ppp0 -j ACCEPT
#accept _all_ connections on *ident* port
#
#/usr/local/bin/iptables -A block -m state --state NEW,ESTABLISHED,RELATED --protocol tcp --dport 6667 -j ACCEPT
#/usr/local/bin/iptables -A block -m state --state NEW,ESTABLISHED,RELATED --protocol tcp --sport 6667 -j ACCEPT
#accept _all_ connections on *ircd* port
#
#/usr/local/bin/iptables -A block -m state --state NEW,ESTABLISHED,RELATED --protocol tcp --dport 22 -i ppp0 -j ACCEPT
#/usr/local/bin/iptables -A block -m state --state NEW,ESTABLISHED,RELATED --protocol tcp --sport 22 -i ppp0 -j ACCEPT
#accept _all_ connections on *ssh* port -- NOT!
#
/sbin/iptables -A block -m state --state NEW,ESTABLISHED,RELATED --protocol tcp --dport 20 -i ppp0 -j ACCEPT
/sbin/iptables -A block -m state --state NEW,ESTABLISHED,RELATED --protocol tcp --sport 20 -i ppp0 -j ACCEPT
#accept _all_ connections on *ftp-data* port
#
/sbin/iptables -A block -m state --state NEW,ESTABLISHED,RELATED --protocol tcp --dport 53 -i ppp0 -j ACCEPT
/sbin/iptables -A block -m state --state NEW,ESTABLISHED,RELATED --protocol tcp --sport 53 -i ppp0 -j ACCEPT
/sbin/iptables -A block -m state --state NEW,ESTABLISHED,RELATED --protocol udp --dport 53 -i ppp0 -j ACCEPT
/sbin/iptables -A block -m state --state NEW,ESTABLISHED,RELATED --protocol udp --sport 53 -i ppp0 -j ACCEPT
#accept _all_ connections on *DNS* ports
#
#/usr/local/bin/iptables -A block -m state --state NEW,ESTABLISHED,RELATED --protocol tcp --dport 4000 -i ppp0 -j ACCEPT
#/usr/local/bin/iptables -A block -m state --state NEW,ESTABLISHED,RELATED --protocol tcp --sport 4000 -i ppp0 -j ACCEPT
##/usr/local/bin/iptables -A block -m state --state NEW,ESTABLISHED,RELATED --protocol tcp --dport 4242 -i ppp0 -j ACCEPT
##/usr/local/bin/iptables -A block -m state --state NEW,ESTABLISHED,RELATED --protocol tcp --sport 4242 -i ppp0 -j ACCEPT
#accept _all_ connections on our strange proxy port
#
/sbin/iptables -A block -m state --state NEW -i ! ppp0 -j ACCEPT
#accept _all_ connections originating on our local interfaces
#
/sbin/iptables -A block -j DROP
#default policy is drop, of course
#
/sbin/iptables -A INPUT -j block
#all in input chain we forward to our rules...
#
/sbin/iptables -A FORWARD -j block
#and forward chain,too.
#
/sbin/iptables -A FORWARD -m limit -j LOG
#do a little, of course limited, logging.
#
/sbin/iptables -A FORWARD -p tcp --syn -m limit --limit 1/s -j ACCEPT
/sbin/iptables -A FORWARD -p tcp --syn -m limit --limit 1/s -j LOG
#SYNflood protection
#
/sbin/iptables -A FORWARD -p icmp --icmp-type echo-request -m limit --limit 1/s -j ACCEPT
/sbin/iptables -A FORWARD -p icmp --icmp-type echo-request -m limit --limit 1/s -j LOG
#ping of death protection
#
#----
---------------------------------------------------------------
----
#that's all folks, for now.
</pre>
<br /><hr />
<p>
<a target="_blank" title="(external link)" href="http://www.razmjenavjestina.org/RazmjenjivaciVjestina/BuD/MojSajt/DocumentS/FireWall">original<!-- wiki-renamed-hyperlink "original"<http://www.razmjenavjestina.org/RazmjenjivaciVjestina/BuD/MojSajt/DocumentS/FireWall> --></a> <span class="nlw_phrase">May 9 2:08am<!-- wiki: {date: 2005-=05-=09 09:08:24 +0200} --></span></p>
</div>
]]></description>
<author>TamTam Migration</author>
<category>BuD, DocumentS, MojSajt, RazmjenjivaciVjestina, TamTam</category>
<guid isPermaLink="true">https://saturn.ffzg.hr/razmjenavjestina/index.cgi?firewall</guid>
<pubDate>Mon, 09 May 2005 07:08:24 -0000</pubDate>
</item>
<item>
<title><![CDATA[ZshRc]]></title>
<link>https://saturn.ffzg.hr/razmjenavjestina/index.cgi?zshrc</link>
<description><![CDATA[<div>Creator: TamTam Migration</div><hr/><div>Tags: BuD, DocumentS, MojSajt, RazmjenjivaciVjestina, TamTam</div><hr/><div class="wiki">
<br /><pre>
function precmd {

    local TERMWIDTH
    (( TERMWIDTH = ${COLUMNS} - 1 ))


    ###
    # Truncate the path if it's too long.
    
    PR_FILLBAR=&quot;&quot;
    PR_PWDLEN=&quot;&quot;
    
    local promptsize=${#${(%):---(%n@%m:%l)---()--}}
    local pwdsize=${#${(%):-%~}}
    
    if [[ &quot;$promptsize + $pwdsize&quot; -gt $TERMWIDTH ]]; then
	    ((PR_PWDLEN=$TERMWIDTH - $promptsize))
    else
	PR_FILLBAR=&quot;\${(l.(($TERMWIDTH - ($promptsize + $pwdsize)))..${PR_HBAR}.)}&quot;
    fi


    ###
    # Get APM info.

#    if which ibam &gt; /dev/null; then
#	PR_APM_RESULT=`ibam --percentbattery`
 #   elif which apm &gt; /dev/null; then
#	PR_APM_RESULT=`apm`
 #   fi
}


setopt extended_glob
preexec () {
    if [[ &quot;$TERM&quot; == &quot;screen&quot; ]]; then
	local CMD=${1[(wr)^(*=*|sudo|-*)]}
	echo -n &quot;\ek$CMD\e\\&quot;
    fi
}


setprompt () {
    ###
    # Need this so the prompt will work.

    setopt prompt_subst


    ###
    # See if we can use colors.

    autoload colors zsh/terminfo
    if [[ &quot;$terminfo[colors]&quot; -ge 8 ]]; then
	colors
    fi
    for color in RED GREEN YELLOW BLUE MAGENTA CYAN WHITE; do
	eval PR_$color='%{$terminfo[bold]$fg[${(L)color}]%}'
	eval PR_LIGHT_$color='%{$fg[${(L)color}]%}'
	(( count = $count + 1 ))
    done
    PR_NO_COLOUR=&quot;%{$terminfo[sgr0]%}&quot;


    ###
    # See if we can use extended characters to look nicer.
    
    typeset -A altchar
    set -A altchar ${(s..)terminfo[acsc]}
    PR_SET_CHARSET=&quot;%{$terminfo[enacs]%}&quot;
    PR_SHIFT_IN=&quot;%{$terminfo[smacs]%}&quot;
    PR_SHIFT_OUT=&quot;%{$terminfo[rmacs]%}&quot;
    PR_HBAR=${altchar[q]:--}
    PR_ULCORNER=${altchar[l]:--}
    PR_LLCORNER=${altchar[m]:--}
    PR_LRCORNER=${altchar[j]:--}
    PR_URCORNER=${altchar[k]:--}

    
    ###
    # Decide if we need to set titlebar text.
    
    case $TERM in
	xterm*)
	    PR_TITLEBAR=$'%{\e]0;%(!.-=*[ROOT]*=- | .)%n@%m:%~ | ${COLUMNS}x${LINES} | %y\a%}'
	    ;;
	screen)
	    PR_TITLEBAR=$'%{\e_screen \005 (\005t) | %(!.-=[ROOT]=- | .)%n@%m:%~ | ${COLUMNS}x${LINES} | %y\e\\%}'
	    ;;
*)
	    PR_TITLEBAR=_
	    ;;
    esac
    
    
    ###
    # Decide whether to set a screen title
    if [[ &quot;$TERM&quot; == &quot;screen&quot; ]]; then
	PR_STITLE=$'%{\ekzsh\e\\%}'
    else
	PR_STITLE=_
    fi
    
    
    ###
    # APM detection
    
#    if which ibam &gt; /dev/null; then
#	PR_APM='$PR_RED${${PR_APM_RESULT[(f)1]}[(w)-2]}%%(${${PR_APM_RESULT[(f)3]}[(w)-1]})$PR_LIGHT_BLUE:'
#    elif which apm &gt; /dev/null; then
#	PR_APM='$PR_RED${PR_APM_RESULT[(w)5,(w)6]/\% /%%}$PR_LIGHT_BLUE:'
#    else
#	PR_APM=''
#    fi
	
#	alias ls='ls -AFqshH --color'
    	alias lsl='ls -Al --color=auto'
 	alias ls='ls --color=auto'
	alias cd..='cd ..'
	alias df='df -h'
	alias defdate='date +%r'
	alias cls='clear'

    ###
    # Finally, the prompt.

    PROMPT='$PR_SET_CHARSET$PR_STITLE${(e)PR_TITLEBAR}\
$PR_CYAN$PR_SHIFT_IN$PR_ULCORNER$PR_BLUE$PR_HBAR$PR_SHIFT_OUT(\
$PR_GREEN%(!.%SROOT%s.%n)$PR_GREEN@%m:%l\
$PR_BLUE)$PR_SHIFT_IN$PR_HBAR$PR_CYAN$PR_HBAR${(e)PR_FILLBAR}$PR_BLUE$PR_HBAR$PR_SHIFT_OUT(\
$PR_MAGENTA%$PR_PWDLEN&lt;...&lt;%~%&lt;&lt;\
$PR_BLUE)$PR_SHIFT_IN$PR_HBAR$PR_CYAN$PR_URCORNER$PR_SHIFT_OUT\

$PR_CYAN$PR_SHIFT_IN$PR_LLCORNER$PR_BLUE$PR_HBAR$PR_SHIFT_OUT(\
%(?..$PR_LIGHT_RED%?$PR_BLUE:)\
${(e)PR_APM}$PR_YELLOW%D{%H:%M}\
$PR_LIGHT_BLUE:%(!.$PR_RED.$PR_WHITE)%#$PR_BLUE)$PR_SHIFT_IN$PR_HBAR$PR_SHIFT_OUT\
$PR_CYAN$PR_SHIFT_IN$PR_HBAR$PR_SHIFT_OUT\
$PR_NO_COLOUR '

    RPROMPT=' $PR_CYAN$PR_SHIFT_IN$PR_HBAR$PR_BLUE$PR_HBAR$PR_SHIFT_OUT\
($PR_YELLOW%D{%a,%b%d}$PR_BLUE)$PR_SHIFT_IN$PR_HBAR$PR_CYAN$PR_LRCORNER$PR_SHIFT_OUT$PR_NO_COLOUR'

    PS2='$PR_CYAN$PR_SHIFT_IN$PR_HBAR$PR_SHIFT_OUT\
$PR_BLUE$PR_SHIFT_IN$PR_HBAR$PR_SHIFT_OUT(\
$PR_LIGHT_GREEN%_$PR_BLUE)$PR_SHIFT_IN$PR_HBAR$PR_SHIFT_OUT\
$PR_CYAN$PR_SHIFT_IN$PR_HBAR$PR_SHIFT_OUT$PR_NO_COLOUR '
}

setprompt
</pre>
<br /><hr />
<p>
<a target="_blank" title="(external link)" href="http://www.razmjenavjestina.org/RazmjenjivaciVjestina/BuD/MojSajt/DocumentS/ZshRc">original<!-- wiki-renamed-hyperlink "original"<http://www.razmjenavjestina.org/RazmjenjivaciVjestina/BuD/MojSajt/DocumentS/ZshRc> --></a> <span class="nlw_phrase">May 9 2:05am<!-- wiki: {date: 2005-=05-=09 09:05:45 +0200} --></span></p>
</div>
]]></description>
<author>TamTam Migration</author>
<category>BuD, DocumentS, MojSajt, RazmjenjivaciVjestina, TamTam</category>
<guid isPermaLink="true">https://saturn.ffzg.hr/razmjenavjestina/index.cgi?zshrc</guid>
<pubDate>Mon, 09 May 2005 07:05:45 -0000</pubDate>
</item>
<item>
<title><![CDATA[XdeFaults]]></title>
<link>https://saturn.ffzg.hr/razmjenavjestina/index.cgi?xdefaults</link>
<description><![CDATA[<div>Creator: TamTam Migration</div><hr/><div>Tags: BuD, DocumentS, MojSajt, RazmjenjivaciVjestina, TamTam</div><hr/><div class="wiki">
<br /><pre>
!!! XTerm

XTerm*saveLines: 900
#XTerm*scrollBar: true

XTerm*backarrowKeyIsErase: true

!!! XTerm fonts

XTerm*faceName: Bitstream Vera Sans&quot;:size=13
XTerm*locale: ISO8859-2

#XTerm*font: -misc-fixed-medium-r-semicondensed-*-13-*-*-*-*-*-iso8859-2

!!! XTerm colors

XTerm*background: black
XTerm*foreground: green

#XTerm*color0: black
#XTerm*color1: firebrick2
#XTerm*color2: CornflowerBlue
#XTerm*color3: goldenrod3
#XTerm*color4: Blue
#XTerm*color5: maroon2
#XTerm*color6: LightSeaGreen
#XTerm*color7: Blue
#XTerm*color8: Blue
#XTerm*color9: VioletRed3
#XTerm*color10: blue3
#XTerm*color11: gold
XTerm*color12: CornflowerBlue
#XTerm*color13: orchid
#XTerm*color14: aquamarine2
XTerm*color15: green4
#XTerm*colorUL: green4
#XTerm*colorBD: blue

!!! Aterm

Aterm*scrollBar: false
Aterm*visualBell: false
Aterm*font: -*-lucidatypewriter-medium-r-normal-sans-12-*-*-*-*-*-iso8859-2

Aterm*transparent: true
Aterm*tinting: LightSlateGray
Aterm*shading: 50

Aterm*color1: firebrick2
Aterm*color2: OliveDrab
Aterm*color3: goldenrod3
Aterm*color4: DodgerBlue3
Aterm*color5: #F85FDC
Aterm*color6: LightSeaGreen
Aterm*color7: gray90
Aterm*color8: gray30
Aterm*color9: VioletRed3
Aterm*color10: YellowGreen
Aterm*color11: gold
Aterm*color12: turquoise4
Aterm*color13: #F85FDC
Aterm*color14: aquamarine2
Aterm*color15: white

Eterm*color1: firebrick2
Eterm*color2: OliveDrab
Eterm*color3: goldenrod3
Eterm*color4: DodgerBlue3
Eterm*color5: #F85FDC
Eterm*color6: LightSeaGreen
Eterm*color7: gray90
Eterm*color8: gray30
Eterm*color9: VioletRed3
Eterm*color10: YellowGreen
Eterm*color11: gold
Eterm*color12: turquoise4
Eterm*color13: #F85FDC
Eterm*color14: aquamarine2
Eterm*color15: white
Xft.antialias: 1
Xft.hinting: 1
Xft.hintstyle: hintmedium
</pre>
<br /><hr />
<p>
<a target="_blank" title="(external link)" href="http://www.razmjenavjestina.org/RazmjenjivaciVjestina/BuD/MojSajt/DocumentS/XdeFaults">original<!-- wiki-renamed-hyperlink "original"<http://www.razmjenavjestina.org/RazmjenjivaciVjestina/BuD/MojSajt/DocumentS/XdeFaults> --></a> <span class="nlw_phrase">Feb 28 2:04pm<!-- wiki: {date: 2005-=02-=28 22:04:32 +0100} --></span></p>
</div>
]]></description>
<author>TamTam Migration</author>
<category>BuD, DocumentS, MojSajt, RazmjenjivaciVjestina, TamTam</category>
<guid isPermaLink="true">https://saturn.ffzg.hr/razmjenavjestina/index.cgi?xdefaults</guid>
<pubDate>Mon, 28 Feb 2005 21:04:32 -0000</pubDate>
</item>
<item>
<title><![CDATA[GetMailrc]]></title>
<link>https://saturn.ffzg.hr/razmjenavjestina/index.cgi?getmailrc</link>
<description><![CDATA[<div>Creator: TamTam Migration</div><hr/><div>Tags: BuD, DocumentS, MojSajt, RazmjenjivaciVjestina, TamTam</div><hr/><div class="wiki">
<p>
<a href="https://saturn.ffzg.hr/razmjenavjestina/index.cgi?options" title="[click to create page]" class="incipient">options</a></p>
<p>
verbose = 1</p>
<p>
read_all = true</p>
<p>
delete = true</p>
<p>
message_log = &quot;&quot;</p>
<ol>
<li>timeout = 240</li>
</ol>
<p>
max_message_size = 0</p>
<p>
<a href="https://saturn.ffzg.hr/razmjenavjestina/index.cgi?retriever" title="[click to create page]" class="incipient">retriever</a></p>
<p>
type = </p>
<pre>
SimplePOP3Retriever
</pre>
<br /><p>
server = pop.htnet.hr</p>
<p>
username = username</p>
<p>
password = password</p>
<p>
<a href="https://saturn.ffzg.hr/razmjenavjestina/index.cgi?destination" title="[click to create page]" class="incipient">destination</a></p>
<p>
type = Mboxrd</p>
<p>
path = /var/spool/mail/</p>
<hr />
<p>
<a target="_blank" title="(external link)" href="http://www.razmjenavjestina.org/RazmjenjivaciVjestina/BuD/MojSajt/DocumentS/GetMailrc">original<!-- wiki-renamed-hyperlink "original"<http://www.razmjenavjestina.org/RazmjenjivaciVjestina/BuD/MojSajt/DocumentS/GetMailrc> --></a> <span class="nlw_phrase">Feb 27 2:02pm<!-- wiki: {date: 2005-=02-=27 22:02:57 +0100} --></span></p>
</div>
]]></description>
<author>TamTam Migration</author>
<category>BuD, DocumentS, MojSajt, RazmjenjivaciVjestina, TamTam</category>
<guid isPermaLink="true">https://saturn.ffzg.hr/razmjenavjestina/index.cgi?getmailrc</guid>
<pubDate>Sun, 27 Feb 2005 21:02:57 -0000</pubDate>
</item>
<item>
<title><![CDATA[MuttRc]]></title>
<link>https://saturn.ffzg.hr/razmjenavjestina/index.cgi?muttrc</link>
<description><![CDATA[<div>Creator: TamTam Migration</div><hr/><div>Tags: BuD, DocumentS, MojSajt, RazmjenjivaciVjestina, TamTam</div><hr/><div class="wiki">
<p>
set alias_file=~/.Mail/.aliases # where I keep my aliases</p>
<p>
set alias_format=&quot;%2f %t %r&quot;</p>
<p>
set allow_8bit                  # never do Q-P encoding on legal 8-bit chars</p>
<p>
set ascii_chars         # use ASCII instead of ACS chars for threads</p>
<p>
set attribution=&quot;On %d, %n wrote:&quot;      # how to attribute replies</p>
<p>
set autoedit                    # go to the editor right away when composing</p>
<p>
set charset=&quot;iso-8859-2&quot;        # character set for your terminal</p>
<p>
set send_charset=&quot;us-ascii:iso-8859-1:iso-8859-2&quot;</p>
<p>
set noconfirmappend          # don't ask me if i want to append to mailboxes</p>
<p>
set copy=yes                    # always save a copy of outgoing messages</p>
<p>
set editor=&quot;vim&quot;                # editor to use when composing messages</p>
<p>
set hdr_format=&quot;%4C %Z %{%m/%d} %-15.15F (%4c) %s&quot; # format of the index</p>
<p>
set hdrs                       # include `my_hdr' lines in outgoing messages</p>
<p>
set help                        # show the help lines</p>
<p>
set include                     # always include messages when replying</p>
<p>
set indent_string=&quot;&gt; &quot;          # how to quote replied text</p>
<p>
set locale=&quot;hr_HR&quot;                      # locale to use for printing time</p>
<p>
set nomark_old                 # i don't care about whether a message is old</p>
<p>
set check_new=yes</p>
<p>
set mail_check=5                # how often to poll for new mail</p>
<p>
set mbox=+mbox                  # where to store read messages</p>
<p>
set mime_forward               # use message/rfc822 type to forward messages</p>
<p>
set move=yes                   # don't ask about moving messages, just do it</p>
<p>
set pager_index_lines=6         # how many index lines to show in the pager</p>
<p>
set pager_stop                 # don't move to the next message on next-page</p>
<p>
set postponed=+postponed        # mailbox to store postponed messages in</p>
<p>
set print=ask-yes              # ask me if I really want to print messages</p>
<p>
set print_command=/bin/false  # how to print things (I like to save trees)</p>
<p>
set noprompt_after    # ask me for a command after the external pager exits</p>
<p>
set read_inc=25                 # show progress when reading a mailbox</p>
<p>
set record=+outbox              # default location to save outgoing mail</p>
<p>
set reply_to                    # always use reply-to if present</p>
<p>
set reverse_alias               # attempt to look up my names for people</p>
<p>
set reverse_name             # use my address as it appears in the message</p>
<p>
set nosave_empty                # remove files when no messages are left</p>
<p>
set sendmail=&quot;/usr/sbin/sendmail -oi -oem&quot;      # how to deliver mail</p>
<p>
set shell=&quot;/bin/bash&quot;           # program to use for shell escapes</p>
<p>
set signature=&quot;~/.signature&quot;    # file which contains my signature</p>
<p>
set sort=threads                # primary sorting method</p>
<p>
set sort_aux=reverse-date-received      # how to sort subthreads</p>
<p>
set sort_aux=last-date          # date of the last message in thread</p>
<p>
set sort_browser=reverse-date   # how to sort files in the dir browser</p>
<p>
set spoolfile='/var/spool/mail/'        # where my new mail is located</p>
<p>
set tilde                  # virtual lines to pad blank lines in the pager</p>
<p>
set tmpdir=/tmp         # where to store temp files</p>
<p>
set nouse_domain               # don't qualify local addresses with $domain[BR]]<br />
set from=&quot;ime &lt;upisete vas mail&gt;&quot;</p>
<p>
set use_from                    # always generate the `From:' header field</p>
<p>
set visual=vim                # editor invoked by ~v in the builtin editor</p>
<p>
set write_inc=25                # show progress while writing mailboxes</p>
<p>
ignore *                # this means &quot;ignore all lines by default&quot;</p>
<p>
unignore        from: subject to cc mail-followup-to \</p>
<p>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;date x-mailer x-url # this shows how nicely wrap long lines</p>
<p>
color hdrdefault red default</p>
<p>
color quoted brightblue default</p>
<p>
color signature red default</p>
<p>
color indicator brightyellow red</p>
<p>
color error brightred default</p>
<p>
color status yellow blue</p>
<p>
color tree magenta default      # the thread tree in the index menu</p>
<p>
color tilde magenta default</p>
<p>
color message brightcyan default</p>
<p>
color markers brightcyan default</p>
<p>
color attachment brightmagenta default</p>
<p>
color search default green    # how to hilite search patterns in the pager</p>
<p>
color header brightred default ^(From|Subject):</p>
<p>
color body magenta default &quot;(ftp|http)://<a href="https://saturn.ffzg.hr/razmjenavjestina/index.cgi?%5E%20" title="[click to create page]" class="incipient">^ </a>+&quot; # point out URLs</p>
<p>
color body magenta default <a href="https://saturn.ffzg.hr/razmjenavjestina/index.cgi?-a-z_0-9." title="[click to create page]" class="incipient">-a-z_0-9.</a>+@<a href="https://saturn.ffzg.hr/razmjenavjestina/index.cgi?-a-z_0-9." title="[click to create page]" class="incipient">-a-z_0-9.</a>+    # e-mail addresses</p>
<p>
color underline brightgreen default</p>
<p>
mono quoted bold</p>
<p>
bind generic &quot;\e&lt;&quot; first-entry# emacs-like bindings for moving to top/bottom</p>
<p>
bind generic \e&gt; last-entry</p>
<p>
bind generic { top-page</p>
<p>
bind generic } bottom-page</p>
<p>
bind generic \177 last-entry</p>
<p>
macro index \cb |urlview\n      # simulate the old browse-url function</p>
<p>
macro index S s+spam\n</p>
<p>
macro pager S s+spam\n</p>
<p>
bind pager G bottom     # just like vi and less</p>
<p>
my_hdr X-Editor: VIM - Vi IMproved</p>
<p>
my_hdr X-Operating-System: <tt>uname -a</tt></p>
<p>
unhdr_order *                           # forget the previous settings</p>
<p>
hdr_order date from subject to cc</p>
<p>
auto_view application/x-gunzip</p>
<p>
auto_view application/x-gzip</p>
<p>
auto_view text/html</p>
<p>
source ~/.Mail/.aliases # config commands local to this site</p>
<p>
set pop_host=&quot;mail.cmu.carnet.hr&quot;</p>
<p>
set pop_user=&quot;vas username&quot;</p>
<p>
set pop_pass=&quot;vas password&quot;<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
&nbsp;&nbsp;&nbsp;</p>
<hr />
<p>
<a target="_blank" title="(external link)" href="http://www.razmjenavjestina.org/RazmjenjivaciVjestina/BuD/MojSajt/DocumentS/MuttRc">original<!-- wiki-renamed-hyperlink "original"<http://www.razmjenavjestina.org/RazmjenjivaciVjestina/BuD/MojSajt/DocumentS/MuttRc> --></a> <span class="nlw_phrase">Feb 27 1:53pm<!-- wiki: {date: 2005-=02-=27 21:53:14 +0100} --></span></p>
</div>
<hr/><div>Attachments: muttrc</div>]]></description>
<author>TamTam Migration</author>
<category>BuD, DocumentS, MojSajt, RazmjenjivaciVjestina, TamTam</category>
<guid isPermaLink="true">https://saturn.ffzg.hr/razmjenavjestina/index.cgi?muttrc</guid>
<pubDate>Sun, 27 Feb 2005 20:53:14 -0000</pubDate>
</item>
</channel>
</rss>