# .ebrc: the configuration file for edbrowse (version 2.2 or above) # This is a sample file. # This file contains passwords - make sure it is not readable by others. # chmod 600 .ebrc # (Of course this public file has no real passwords, but yours will.) # First the email accounts; I have several. # My primary account, from my ISP. # Access this account via -m1. # The next account is -m2, and so on. mail { # The pop3 server and the smtp server, they need not be the same. inserver = mail.comcast.net outserver = smtp.comcast.net # login and password login = kdahlke189603 password = elephant # Who is this mail from? Your name, and a reply address. # Note, it is now illegal to forge email, so make sure your name # is really yours, or your business, and make sure the reply address # is one of your email accounts, or is forwarded to you. from = Karl Dahlke reply = kdahlke189603@comcast.net } # My personal email account. # This is a subaccount under my primary ISP account. mail { inserver = mail.comcast.net outserver = smtp.comcast.net # When I send mail out, this is the default account. default login = eklhad password = zebra from = Karl Dahlke reply = eklhad@comcast.net } # My wife's account. # I check on it once in a while, with her permission of course. mail { inserver = mail.comcast.net outserver = smtp.comcast.net login = kdwife password = kangaroo from = Wendy Dahlke reply = kdwife@comcast.net } # My work account. mail { # The shortcut eyemail is defined in /etc/hosts. # You can do it this way, or use a full domain name, # as I did with comcast. inserver = eyemail outserver = eyemail login = karl.dahlke@my-work-domain.com password = cheetah from = Karl Dahlke reply = karl.dahlke@my-work-domain.com } # Mail that looks like it came from my other web sites. # Let's start with the math site. mail { inserver = mail.comcast.net outserver = mail.comcast.net login = eklhad password = zebra from = Karl Dahlke # All MathReference email is forwarded to me. reply = webmaster@mathreference.com } mail { inserver = mail.comcast.net outserver = mail.comcast.net login = eklhad password = zebra # My wife and I work on this site together. from = Karl and Wendy Dahlke reply = webmaster@scrapsayings.com } # An email associated with my private domain, independent of my ISP # This is forwarded to my ISP. mail { inserver = mail.comcast.net outserver = mail.comcast.net login = eklhad password = zebra from = Karl Dahlke reply = eklhad@comcast.net } # That's all the mail accounts. # Here is my address book. # Format is alias:email:other fields. adbook=/home/eklhad/outside/adbook # Move to this directory when fetching mail. maildir = /home/eklhad/mbox # ip addresses on the blacklist ipblack=/home/eklhad/outside/ipblack # The cookie jar - where we store the http cookies. # This file contains passwords, make sure it is 0600. # Do not hand edit this file, unless you know what you are doing! jar = /home/eklhad/outside/cookies # file of ssl certificates # If you put your file here, it will be shared with lynx, and perhaps other browsers. certfile = /etc/ssl/cert.pem # wait 30 seconds for a response from a web server webtimer = 30 # wait 3 minutes for a response from a mail server mailtimer = 180 # Write spam messages here. I use a file in my trash bin, # so I know it gets cleaned out every week. spamcan = /home/eklhad/.Trash/spamcan # Redirect mail based on the sender, or the destination account. fromfilter { fred flintstone > fredmail fred.flintstone@bedrock.us > fredmail jerk@hotmail.com > x word@m-w.com > -wod } tofilter { support@my-side-business.com > support sales@my-side-business.com > sales @my-side-business.com > business me@my-regular-dayjob.com > work } # Describe the mime types and the programs to run them. # For obvious reasons, I'm only worried about the audio - # though there may be some application files that could be meaningfully processed. mime { type = audio/basic desc = audio file in a wave format suffix = wav,voc,au # The star is replaced with the suffix at runtime program = play -t * - } mime { type = audio/mp3 desc = audio file in mp3 format suffix = mp3 #program = mpg123 -q - # The above line works, but can be inconvenient, depending on the player. # Some mp3 players don't work as well # when they get their input from a pipe. # When it comes from a file, they respond better to keyboard commands, # to pause, back up, etc. # So I invented a special % character at the end, # which becomes a temp file with the proper suffix. program = mpg123 -q % # And we could have done the same with play above. #program = play % # Then you wouldn't need the -t * # because the temp file has the right suffix, and play understands. } mime { # the < forces it to be a stream, hence the url is passed to the program type =