(Category) (Category) Accessing Services at OA5 / YASK / Irial
This is a live FAQ. Please click here for the (Xref) Swedish Version
Customers are encouraged to post questions with no answers for us to answer.

Click on "new Answer" at the bottom of a category index page to bring up the entry page. Keep the question to one line, and of course limit the subject to our services.

You can also add to our answers if that seems helpful. We reserve the right to edit or delete all comments

NB you will have to supply your email address to authenticate yourself before your changes will be accepted. The email address is used to send you a code which you have to enter. This confirms that you really have access to that email address.

Subcategories:
(Category) My Website
(Category) My Email
(Category) My PC
(Category) Transferring from another ISP
(Category) Swedish Version

Answers in this category:
(Answer) What do I get for my money?
(Answer) Why do you send out renewal notices 6 months before renewal is due?
(Answer) I need Help! Who do I contact?
(Answer) My question is not here, what do I do?

[New Answer in "Accessing Services at OA5 / YASK / Irial"]
supportAToa5DOTcom, janATirialDOTcom, andrewATknotsDOTnet, SimonATEarthrowlDOTOrg, danielATtittonDOTcom, infoATnorraekonomibyranDOTse, salesATbroadlandwebDOTcoDOTuk
2009-Oct-26 19:27
(Category) (Category) Accessing Services at OA5 / YASK / Irial : (Category) My Website
How to update your website, what about scripts, what about statistics?
Subcategories:

Answers in this category:
(Answer) Basic Information
(Answer) How do I set up Scripts
(Answer) Setting up a form on your Website using Dreamweaver
(Answer) How do I debug Scripts?
(Answer) cgi-bin is empty, where are the scripts you set up for me?
(Answer) What scripts are available already?
(Answer) How do I configure Faq-O-Matic on your web servers
(Answer) How do I set up a MySql database in my web area?
(Answer) I've just uploaded a file, but I get a blank page in my browser
(Answer) Scripts that can be hacked

[New Answer in "My Website"]
supportAToa5DOTcom, pvdATbarnowlsDOTnet, diceyATfastmailDOTca, andrewATknotsDOTnet
2006-Jun-24 12:42
(Answer) (Category) Accessing Services at OA5 / YASK / Irial : (Category) My Website : (Answer) Basic Information
When you host your domain with oa5.com, you have a certain amount of space available, usually 1G/bytes.

You can update your website using FTP. When you log in with FTP, your username will be ex.gr. mydomain.com, and you will find an empty file "This_is_mydomain.com", and at least 2 subdirectories "www" and "cgi-bin" If you have webmail service you will also have subdirectories "webmail" and "webmail.data"

If instead you see the file "Anonymous_FTP_area" you have not logged in using your username and password, you should log out and start again.

To update your website you should go into the "www" folder. this is the top folder for your website "www.mydomain.com"

The top file in your website must be called "index" --- specifically the preferred files are:

index.shtml
index.html
index.php
index.htm

in that order. Files ending in ".shtml" are special, and allow you to pull in other files using "server-side includes"

Your www directory is /Sites/com/mydomain/www/ when it is accessed through the web, but /www when accessed through FTP

[Append to This Answer]
andrewATknotsDOTnet, supportAToa5DOTcom
2010-Jan-26 14:36
(Answer) (Category) Accessing Services at OA5 / YASK / Irial : (Category) My Website : (Answer) How do I set up Scripts
In your home directory there are at least 2 subdirectories

 * www      -- this is where your website lives
 * cgi-bin  == This is where to put your scripts
Scripts can be made executable by changing their attributes with your FTP program. Users of traditional command-line FTP will have to use the "SITE CHMOD" comand.
[Append to This Answer]
supportAToa5DOTcom
2002-Jun-08 15:06
(Answer) (Category) Accessing Services at OA5 / YASK / Irial : (Category) My Website : (Answer) Setting up a form on your Website using Dreamweaver

Answer by Monica Horten

This tells you how to create a form for subscribers to fill in and request information from you on your website. It is written for OA5.com customers - and contains information which is specific to the OA5.com web servers.

There are other different kinds of forms that you can create - they are not covered here.
  1. In Dreamweaver, set the view to "Code and Design".
  2. Insert a new form in the position on the page where you want it.
  3. Give the form a name. Click in the form outline ( you need "hidden detail" turned on to see this, and the outline will be red dotted line). At the bottom of the screen, in the Properties box, you will see a field for "Form name" - change "form1" to whatever you want eg 'inforequest'
  4. You need to tell the server how to process your form. The processing is done by your CGI Formmail script. In most cases, you will want it to email the data to you. Thus, in the 'Action' box, type the URL for your CGI bin. Do check with OA5 what this should be if you are not sure, but the standard format for OS5.com is http://www.yourdomain.com/cgi-bin/formmail
  5. Next, make a selection in the "Method" "target" and Enctype" boxes. If you want the server to send you an email with the subscriber's details, then select as follows: Target = Blank and Enctype = "application/x-www-form-urlencoded"; Method = POST;
  6. THEN go to 'View Code' and immediately after a line that looks like this:
    <form action="http://www.your domain.com/cgi-bin/formmail" method="post" enctype="application/x-www-form-urlencoded" name="yourformname" target="_blank" id="yourformname" >
    insert the following line:
    <input name="recipient" type="hidden" value="your.email@yourdomain.com">
  7. If you want people to fill in name, address, etc, create "text fields" for each one. Type some meaningful text next to each field. This will tell the user what you want them to enter. And then go to 'textfield' in the Properties box, and type in a name for your field. This will remind you of what each text box is collecting, when you receive the emailed details. For example, if you want people to name their organisation, create a text field labelled 'Organisation, and give it the name 'Organisation' in the Properties box. You will see a line like this in the code:
    <input type="text" name="organisation">
  8. To get drop-down boxes or buttons, just select the appropriate one from the menu, and enter the selections as 'values'.
  9. When you have finished designing the form fields, you need a submit button. Select 'Button' from the menu, and Dreamweaver should do this for you. You can alter the text on the button, if it does not automatically say 'Submit'.
  10. Test the form by setting up a preview page and filling in the form yourself. If you receive an email, the form has worked. If you don't receive an email, you should check the code in your form.

This is a very basic form. It will email you with the information that the subscriber has filled in. If you want to do more fancy things, like a thank-you page or mandated fields, we have found the following sites to be of assistance.


[Append to This Answer]
supportAToa5DOTcom
2005-Nov-26 13:54
(Answer) (Category) Accessing Services at OA5 / YASK / Irial : (Category) My Website : (Answer) How do I debug Scripts?
When you want to use a script from a document you will be most likely to do so as part of processing a form. The form will start

     <FORM METHOD="/cgi-bin/myscript">

If instead of "cgi-bin" you put "cgi-bind" this will put cgi-wrap into debug mode, and you will see everything that your script produces.

The script stays in your cgi-bin directory -- don't create a new directory! The extra "d" is just a flag to the system which tells it to start cgi-wrap differently.

cgiwrap is a program that causes your scripts to be run with your permissions rather than the webserver's, this means that your script will be able to read and write files in your folders.
[Append to This Answer]
supportAToa5DOTcom
2002-Aug-31 07:31
(Answer) (Category) Accessing Services at OA5 / YASK / Irial : (Category) My Website : (Answer) cgi-bin is empty, where are the scripts you set up for me?
When you call up a script from your cgi-bin directory, the web-server runs a program called cgiwrap to run it for you.

cgi-wrap looks at the directory name to see how it should run the program see (Xref) How do I set up Scripts, and then otherwise ignores it. Cgiwrap builds a search path, starting with your cgi-bin directory, and going on to some that OA5 have defined which have common scripts for everyone.

Next it checks each directory in the path to see if the script is there. When it is not found in your own cgi-bin directory, it finds it in OA5's system wide script directory.

If you don't like OA5's script, you can put one of the same name in your own cgi-bin directory and that will be found first.

NB Please don't put in your own version of formmail -- there are *lots* of buggy versions out there, which can be exploited to send spam, and we really do not want them on the server.

[Append to This Answer]
supportAToa5DOTcom
2002-Jun-08 21:35
(Answer) (Category) Accessing Services at OA5 / YASK / Irial : (Category) My Website : (Answer) What scripts are available already?
There are 3 basic scripts
  • formmail
  • ask-for-info.pl
  • ask-for-catalogue.pl
  • FORMMAIL

    This is a version of the original formmail script. The variables are the ones you would expect, but you can only send mail to addresses in your own domain, so it is only useful for feedback, taking orders and so on. It only confirms to the user on the web, rather than sending them mail.

    These restrictions are a side-effect from fixing many of the known exploits that hackers have developed to abuse the standard formmail script. Do not install the standfard formmail.pl in your cgi-bin directory

    Webdesigners NB

    If you want to be sure of the sender's mail address you would be better to use a mailto: METHOD= on your FORM

    ask-for-info.pl and ask-for-catalogue.pl

    These scripts are designed to get some somple contact information to make sure you can properly reply to enquiries. The scripts record the contact information in a log that we can print off for you. They do not record the enquirey.

    These scripts take 3 optional parameters to make them fit in with your colour scheme

    background
    default #00404f, The background colour
    text
    default #ffffff. The text colour
    link
    default #00ffff. The colour for hyperlinks

    Data Protection

    The information provided on the form forces an explicit choice as to whether the contact information can be used other than to reply to the query. This choice is also recorded, and can be used as the start of opt-in mailings, though you should try to validate that it really was the user who made the entry, rather than someone maliciously filling in the user's address in an effort to flood them with unwanted e-mail.

    [Append to This Answer]
    supportAToa5DOTcom
    2002-Nov-25 15:51
    (Answer) (Category) Accessing Services at OA5 / YASK / Irial : (Category) My Website : (Answer) How do I configure Faq-O-Matic on your web servers
    Please contact us to get your faq-o-matic set up.
    [Append to This Answer]
    supportAToa5DOTcom
    2005-Apr-29 12:55
    (Answer) (Category) Accessing Services at OA5 / YASK / Irial : (Category) My Website : (Answer) How do I set up a MySql database in my web area?
    MySQL database support comes with "Gold Service" hosting @ £300 / year
    You also get

    + 3Gb total space
    + 50 mailboxes
    + 20,000 mailbox capacity on your mailing lists

    [Append to This Answer]
    diceyATfastmailDOTca, andrewATknotsDOTnet, supportAToa5DOTcom
    2005-Apr-29 12:58
    (Answer) (Category) Accessing Services at OA5 / YASK / Irial : (Category) My Website : (Answer) I've just uploaded a file, but I get a blank page in my browser
    First check with Shift-Reload to make sure you are accessing the site, and are not being caught by a cache somewhere

    If it's still an empty page/image, have a look with your FTP program. The file probably has zero size. This would mean that your website has been over quota for some days, and you either have to delete some files to create some space, or phone to arrange a bigger hosting package.

    You can overrun your quota for a couple of days by about 20 megabytes to help upload a new site, but then if you stay over the limit, the restriction cuts in.

    The biggest space-hogs are full-sized photos. Consider only loading "web freindly" versions, reduced to the size you actually want to display. This will also make your website faster.

    Increaded capacity hosting is available in 3 sizes

    + Silver service: 1Gb space, and 20 mailboxes

    + Gold Service: 3Gb space, and 50 mailboxes

    [Append to This Answer]
    andrewATknotsDOTnet, supportAToa5DOTcom
    2005-Apr-29 13:03
    (Answer) (Category) Accessing Services at OA5 / YASK / Irial : (Category) My Website : (Answer) Scripts that can be hacked
    There are a couple of programs that we know cause trouble

    Top of the list is formmail.pl

    Then there are systems based on certain versions of xmlrpc.php

    Finally a new contender is contactus.php. Its header is

    #-----------------------------------------------------------
    #-----
    #----- Forms To Go v2.0.4 by Bebosoft
    #-----
    #----- http://www.bebosoft.com/
    #-----
    #-----------------------------------------------------------

    Any of these scripts will be taken down, and may be cause to take down your whole website

    [Append to This Answer]
    andrewATknotsDOTnet
    2006-Jun-24 12:47
    (Category) (Category) Accessing Services at OA5 / YASK / Irial : (Category) My Email
    Email Redirection, mailboxes, mailing lists
    Subcategories:
    (Category) About SPAM
    (Category) Webmail
    (Category) Microsoft SBS

    Answers in this category:
    (Answer) Basic Email
    (Answer) How do I configure my E-Mail program to access my mail?
    (Answer) Configuring for Outlook Express
    (Answer) Why does Outlook [Express] keep asking for my password?
    (Answer) Ive just upgraded to eudora 5.2 and now I cant pick up my mail but get ssl errors
    (Answer) Why does my deleted mail stay in my inbox rather than going into my deleted folder
    (Answer) The same messages appear again as new every time I log in with pop
    (Answer) Can I set up Automatic Replies and Vacation Messages?
    (Answer) How much mail can I keep in my IMAP folders?
    (Answer) What if someone sends me a huge attachment?
    (Answer) I'm over quota and now I can't delete anything to make space
    (Answer) How do I get rid of mail from my Trash folder
    (Answer) Vacation does not seem to be replying to mail I receive
    (Answer) Vacation is using a really strange address as the From in replies
    (Answer) Why can't I send mail to anyone but OA5, myself and my colleagues? [Relaying not allowed without authentication]
    (Answer) Mail to me is being bounced, help!
    (Answer) Which is better IMAP or POP3 -- my mailbox is whichever
    (Answer) My ISP blocks outgoing mail not sent through their servers
    (Answer) My mail is not arriving -- Help
    (Answer) Configuring Versamail on a Palm handheld
    (Answer) Why has SquirrelMail lost my configuration>
    (Answer) 550 5.7.1 my.dom does not send mail through x.y.z.n, please discard What does this mean?
    (Answer) I keep getting bounces for SPAM I have not sent -- can you do something?
    (Answer) How do I turn off SPAM Filtering?
    (Answer) How can I see the mail coming in for my assistant when she's not in?
    (Answer) I get the message "Mailbox greylisted please try again later" when sending
    (Answer) I have a strange email, can you tell me what's going on please?

    [New Answer in "My Email"]
    supportAToa5DOTcom, andrewATknotsDOTnet, pvdATbarnowlsDOTnet
    2009-Nov-02 19:44
    (Category) (Category) Accessing Services at OA5 / YASK / Irial : (Category) My Email : (Category) About SPAM
    How does OA5 handle SPAM?
    Subcategories:

    Answers in this category:
    (Answer) What about SPAM?
    (Answer) I don't want you to filter SPAM for me
    (Answer) Can't you just let all mail from <wherever> in?
    (Answer) So how do addresses get whitelisted?
    (Answer) I keep getting mail about {SPAM] which your filter isn't catching
    (Answer) Creating rules to use the X-Assp-Spam-Prob: heading
    (Answer) I already seem to have a SPAM rule. Where did that come from?
    (Answer) How do I stop my friend's mail being checked for SPAM?
    (Answer) I'm not getting my registration fromSKYPE, are you filtering?
    (Answer) I've forwarded mail from x@y to train the filter but it's still being marked as SPAM

    [New Answer in "About SPAM"]
    andrewATknotsDOTnet, supportAToa5DOTcom
    2007-Mar-13 09:41
    (Answer) (Category) Accessing Services at OA5 / YASK / Irial : (Category) My Email : (Category) About SPAM : (Answer) What about SPAM?
    OA5 handels Unsolicited Bulk Email (SPAM) in two ways

    REAL-TIME-BLACKHOLE Lists

    ACTIVE SPAM FILTERS

    REAL-TIME-BLACKHOLE Lists

    SPAMMERS cheat, steal and lie. They use information provided for one purpose (such as buying something) to bombard you with undesired advertising. They find machines that are not fully guarded, and steal their processing and bandwidth to send out their messages. They pretend to be other people, or to have bought a mailbox on honestly run systems, causing distress to the net-users whose identity they have stolen.

    Finding SPAM is not easy, but some general approaches work. There is a small risk of false positives, but that is better than the prospect of fifty unsolicited messages in one's mailbox each morning.

    Most SPAM comes in from places that didn't ought to be sending mail directly. We buy a service from a company that tracks systems that are being used to send or relay SPAM, or which have been marked by the network owner as not legitimate mail sources. We use these realtime-blackhole-lists to block messages that have not been authenticated.

    That means our customers can still connect, and using their password send mail, even from otherwise blocked sites, but no other messages will be accepted from such sites.

    ACTIVE SPAM FILTERS

    OA5 uses an anti-SPAM tool called ASSP which uses a 'Bayesean filter' to see if the message contains spam language or normal language. It has fairly good discrimination, and also blocks executable attachments, so the only way you can get a virus is by opening a .zip file and running what is inside.

    See elsewhere for how to use this (Xref) Creating rules to use the X-Assp-Spam-Prob: heading

    The filter is based on analysing a lot of mail, both spam and not spam to work out which vocabulary indicates either type of message. If you get spam which the filter has not caught, we have feedback addresses spam@ns1.knots.net and realham@ns1.knots.net, or if you use IMAP you can file spam that gets through in <<other users>>/spam, and anything that comes through marked as SPAM which is not in <<other users>>/notspam, and this will help our filters adjust to make a better distinction.

    These accept emails to adjust the filters in the obvious way --- things that come through marked SPAM which are not should go to not-spam, things that come through unmarked which are spam need to go to the spam address.

    It only works properly if you can bounce or resend the mail to the appropriate address, in particular forwarding, either by inclusion, or as attachment is NOT helpful.

    If you have a local webmail account you may subscribe to 2 additional folders 'user.spam' and 'user.not-spam' which are where some messages are collected before going into the feedback. You can then simply refile mail into those mail folders, rather than bouncing

    [Append to This Answer]
    supportAToa5DOTcom, andrewATknotsDOTnet
    2006-Mar-16 09:47
    (Answer) (Category) Accessing Services at OA5 / YASK / Irial : (Category) My Email : (Category) About SPAM : (Answer) I don't want you to filter SPAM for me
    That's fine, We don't actually discard mail for new mailboxes these days, but rather file mail that looks like SPAM into a SPAM folder we set up for you. This is done in the sieve delivery tool, and you can delete this rule if you so desire.

    When we file mail into your SPAM box we make sure it does not eat up your quota, so messages in the SPAM folder which are older than 3 days are deleted every morning. If you find something there that you want please make sure to move it to another mail folder.

    [Append to This Answer]
    andrewATknotsDOTnet, supportAToa5DOTcom
    2007-Jan-31 17:28
    (Answer) (Category) Accessing Services at OA5 / YASK / Irial : (Category) My Email : (Category) About SPAM : (Answer) Can't you just let all mail from <wherever> in?
    Well yes, if wherever is somewhere you send mail to, then it will be marked in the database as somewhere you would expect to get mail from, and will not be checked.

    If you get mail from a mailing list that always uses the same address to send to you we can add that to the database for you. Unfortunately some mailing lists change the sending address every message, making ity impossible to whitelist them.

    [Append to This Answer]
    andrewATknotsDOTnet
    2004-Feb-25 16:45
    (Answer) (Category) Accessing Services at OA5 / YASK / Irial : (Category) My Email : (Category) About SPAM : (Answer) So how do addresses get whitelisted?
    When you send mail through the OA5 servers, either by using webmail or by making an authenticated connexion from your mail program (eg Mulberry, Eudora, Outlook etc) any address you send to (or CC) will be whitelisted.

    This whitelisting lasts for 2 years from the last time you send to an address.

    Some addresses are permanantly addred because we put them in with system privelage.

    NB mail sent from your website does not add addresses to the whitelist

    When someone is whitelisted, they can send to you, without their mail being checked. In general this is a Good Thing, but ...

    Some virus programs use addresses out of the address books they find on the machines they infect as the from address for sending out more virus copies. If they chose a whitelisted address to send from you are less protected.

    As general advice, NEVER open unexpected attachments, and always keep your anti-virus software up to date (or start using linux or a Mac)

    Also it's probably a bad idea to use a vacation program on your PC, as you might inadvertantly whitelist a spam-source. Please use mail-delivery vacation processing on our servers, see: (Xref) Can I set up Automatic Replies and Vacation Messages?
    [Append to This Answer]
    andrewATknotsDOTnet
    2006-Jun-21 15:04
    (Answer) (Category) Accessing Services at OA5 / YASK / Irial : (Category) My Email : (Category) About SPAM : (Answer) I keep getting mail about {SPAM] which your filter isn't catching
    There is a filtering system you can set up for yourself to pick out those messages with certain characteristics and discard them, or file them into a seperate folder.

    Please see (Xref) Can I set up Automatic Replies and Vacation Messages? for how to get to it.

    Also if you forward these spam messages to the email address spam at ns1.knots.net (address spelled out to stop machines picking it up) that will help train the sorting algorithn

    [Append to This Answer]
    andrewATknotsDOTnet
    2007-Jan-31 17:31
    (Answer) (Category) Accessing Services at OA5 / YASK / Irial : (Category) My Email : (Category) About SPAM : (Answer) Creating rules to use the X-Assp-Spam-Prob: heading
    To create rules to use the Assp SPAM classification you need to turn on mail filtering using websieve((Xref) Can I set up Automatic Replies and Vacation Messages?), and create a rule to store your SPAM in a separate mail folder, you should check this folder occasionally to see if any real mail has been mis-classified. Once (if) you are happy with the filtering then change the filter to discard the mail straight away.

    To set up a filter, go to your normal webmail page and click on the Folders link. Create a new folder to store your spam temporarily. You will need to remember the name you give the folder. Try something like spam_store. Then go to this page:

     http://MY-DOMAIN/cgi-bin/websieve.pl
    where MY-DOMAIN is your usual www.something address

    log in with the same username and password that you use for accessing webmail.

    Now click on the "Advanced Options" button, set "activate script" to yes ( this turns mail filtering on ). Then click "Save Changes"

    Now click the "Add Rule" button

    In the top of the main section select the check box for "Use regular expressions"

    In the next part of this section look for a field called "Field Name" in this box type X-Assp-Spam-Prob and in the "contains" box enter the following text, which means 1.0 or 0.6,0.7,0.8,0.9 ie what we believe is spam. Note the "\\." is two back-slashes and a single dot.

     (1\\.0)|(0\\.[6789])
    Finally choose what to do with the suspected SPAM. We suggest filing it into the folder SPAM which we created for you with your account, as this folder is auto-cleaned after 3 days, which gives you time to check for mistakes, but you might also simply chose to discard the message.
     
    now click on the "save rule" button.

    This will start filtering your mail - Don't forget to check the spam store occasionally for non-spam, and then click show all, toggle all and delete in your spam_store mailbox to throw the unwanted mail away, as it's using space that you could be using for real mail.

    [Append to This Answer]
    pvdATbarnowlsDOTnet, andrewATknotsDOTnet, supportAToa5DOTcom
    2007-Aug-13 07:38
    (Answer) (Category) Accessing Services at OA5 / YASK / Irial : (Category) My Email : (Category) About SPAM : (Answer) I already seem to have a SPAM rule. Where did that come from?
    As of 2006, all NEW email accounts are created with a SPAM pre-filing rule. This is in line with what the majority of our users require. Ththrown awaye rule files messages we have tagged as probably SPAM into a folder on the server called "SPAM." You can access this folder directly if your account is setup for IMAM, or if you have POP set by default then you can find these messages via the webmail interface.

    The SPAM folder is automatically purged of old messages after three days. This is system-wide and cannot be varied for individual users

    There is still a chance that legitimate mail might be filed here. We estimate the probability at less than 1 in 300 messages tagged as SPAM will be legitimate, but if you are expecting something and it has not arrived, check here.

    [Append to This Answer]
    andrewATknotsDOTnet, supportAToa5DOTcom
    2006-Nov-15 08:32
    (Answer) (Category) Accessing Services at OA5 / YASK / Irial : (Category) My Email : (Category) About SPAM : (Answer) How do I stop my friend's mail being checked for SPAM?

    You can whitelist your friends in 2 different ways

    1. Send a mail to your friend. Provided you submit your mail through our server using authenticated SMTP, we will automatically pick up the fact that you've sent them mail, and add their address to the whitelist.
    2. If you have a big list of friends and want to make sure they're all whitelisted, you can send mail to whitelist@ns1.knots.net with one mail address per line.

      Please Note, this address is also a SPAM-Trap -- if you mail to it without authenticated SMTP your email will go to feed our spam collection.

    Once an address is whitelisted it will stay listed for 2 years from the last time you send it mail

    .
    [Append to This Answer]
    supportAToa5DOTcom
    2004-Sep-24 11:15
    (Answer) (Category) Accessing Services at OA5 / YASK / Irial : (Category) My Email : (Category) About SPAM : (Answer) I'm not getting my registration fromSKYPE, are you filtering?

    On the contrary, the skype addresses we know about are all whitelisted ie:

    • postmaster@share.skype.net
    • customerservice@skype.com
    • customerservice@skype.net
    • help@skype.com
    • help@skype.net
    • info@share.skype.com
    • info@share.skype.net
    • info@skype.com
    • info@skype.net
    • info@skypeout.co.uk
    • info@skypeout.com
    • info@skypeout.net
    • jobs@skype.net
    • noreply@share.skype.net
    • noreply@shared.skype.net
    • noreply@skype.net
    • postmaster@share.skype.net
    • pstn-feedback@skype.com
    • pstn-feedback@skype.net
    • support@skype.com
    • support@skype.net
    So they are not even checked for SPAM content. We have not had mail from any other addresses containing "skype", and if you know of any place they really send registrations from, that is not on this list, please let us know, so that it can be added.

    In the meantime I can only conclude that they are increadibly bad at sending out their final signup mail, because we've looked on behalf of many customers for messages to them being classified as spam in error. We have noe ever found any --- it's almost as if they're not mailing to us!


    [Append to This Answer]
    supportAToa5DOTcom
    2006-Jan-05 10:33
    (Answer) (Category) Accessing Services at OA5 / YASK / Irial : (Category) My Email : (Category) About SPAM : (Answer) I've forwarded mail from x@y to train the filter but it's still being marked as SPAM
    Single copies do not have a lot of effect on the overall statistics from the processing of 25000 mails. The best way to not get mail "spammed" is to correspond with the sender, thus whitelisting their address.

    If the sender is a read-only mailing list then you need to whitelist it by sending a TEXT ONLY email (ie not mixed text/html) to whitelist at ns1.knots.net with 1 address per line in the body every now and again.

    Please remember that the sender will be found in the X-Assp-Envelope-From header line which you can find by inspecting the properties of the message

    [Append to This Answer]
    andrewATknotsDOTnet
    2007-Mar-13 09:45
    (Category) (Category) Accessing Services at OA5 / YASK / Irial : (Category) My Email : (Category) Webmail
    Relating to the OA5 implementation of webmail
    Subcategories:

    Answers in this category:
    (Answer) How do I access webmail
    (Answer) I can't see the recipients in my Sent Items Folder
    (Answer) What is difference between Sent and Sent Items on the webmail page
    (Answer) Can I automatically empty my trash folder
    (Answer) Why do replies to my webmail go to my default account
    (Answer) I use POP to pick up my mail, can I use WebMail?

    [New Answer in "Webmail"]
    pvdATbarnowlsDOTnet, supportAToa5DOTcom, andrewATknotsDOTnet
    2004-Mar-01 18:25
    (Answer) (Category) Accessing Services at OA5 / YASK / Irial : (Category) My Email : (Category) Webmail : (Answer) How do I access webmail
    Webmail is only available when you have real mailboxes with OA5.com, rather than alias redirection.

    You can find the webmail interface for yourdomain.com on

    http://webmail.yourdomain.com

    and use the account name and password you use to pick up your mail to read it directly from the server

    When you start to use webmail, please remember to configure your email address, if you do not use your e-mail address as your account name.

    Go to Options on the right-hand panel, then go to Personal Information

    The Important line is e-mail address as this is usually different from the account name you used to connect to your mailbox, and the account-name is oftrn not a valid email address. The other items are entirely discretionary.

    [Append to This Answer]
    supportAToa5DOTcom, andrewATknotsDOTnet
    2006-Oct-28 17:01
    (Answer) (Category) Accessing Services at OA5 / YASK / Irial : (Category) My Email : (Category) Webmail : (Answer) I can't see the recipients in my Sent Items Folder
    To display 'To' instead of From in the Index to the folder you need to tell webmail that "Sent Items" is your outgoing copy folder

    Go to Options at the top of the page, then to "Folder Preferences" to set it.

    [Append to This Answer]
    supportAToa5DOTcom
    2002-Sep-23 17:22
    (Answer) (Category) Accessing Services at OA5 / YASK / Irial : (Category) My Email : (Category) Webmail : (Answer) What is difference between Sent and Sent Items on the webmail page
    Webmail sets up the folder "Sent Items" to keep copies of messages you send.

    The name "Sent Items" was chosen for compatibility with Outlook Express, which also uses that name.

    If you have a folder called Sent, then you may at some time have used a different IMAP mail client to access your mailbox, and that client has a different idea about the name for the mailbox.

    [Append to This Answer]
    andrewATknotsDOTnet
    2004-Feb-25 16:49
    (Answer) (Category) Accessing Services at OA5 / YASK / Irial : (Category) My Email : (Category) Webmail : (Answer) Can I automatically empty my trash folder
    Not at the moment, However Its easy to empty. From the fromt screen, just click on the word (purge) next to the trash folder and it will be emptied.
    [Append to This Answer]
    pvdATbarnowlsDOTnet
    2002-Nov-25 15:57
    (Answer) (Category) Accessing Services at OA5 / YASK / Irial : (Category) My Email : (Category) Webmail : (Answer) Why do replies to my webmail go to my default account
    Your mail is being sent out with your imap account as the from address.

    The IMAP account name is not a valid email address on this system, so replies are beimg sent to the default email address for your domain.

    To fix this go to Options at the top of the webmail page, then click "Personal information" and make sure your email address is correctly set. You might like to set your name correctly while you are here too. You don't have to set reply-to if you set your email correctly, but you may if you wish.

    [Append to This Answer]
    andrewATknotsDOTnet
    2004-Feb-25 16:50
    (Answer) (Category) Accessing Services at OA5 / YASK / Irial : (Category) My Email : (Category) Webmail : (Answer) I use POP to pick up my mail, can I use WebMail?
    Well sort-of.

    You can use webmail to see messages that have not been downloaded yet, and to post, but things can get hairy when a POP download happens while you are doing things.

    It's not reccomended unless you are travelling, and have switched off the machine that would otherwise download messages.

    [Append to This Answer]
    andrewATknotsDOTnet
    2004-Feb-26 17:44
    (Category) (Category) Accessing Services at OA5 / YASK / Irial : (Category) My Email : (Category) Microsoft SBS
    We have a lot of customers who use Microsoft SBS but have us despam their mail. This section has notes on setting up this configuration
    Subcategories:

    Answers in this category:
    (Answer) What does the configuration look like?
    (Answer) Where do I configure SBS to send mail through the OA5 server?

    [New Answer in "Microsoft SBS"]
    andrewATknotsDOTnet
    2008-Jul-24 17:56
    (Answer) (Category) Accessing Services at OA5 / YASK / Irial : (Category) My Email : (Category) Microsoft SBS : (Answer) What does the configuration look like?
    A quick text picture should help
    
    
    _____
         )________             +------------+                 +--------+
                  )    SMTP    | OA5 Server |  SMTP or POP    |        |
      INTERNET     } < ----- > | DeSPAMing  |  -------------> | MS SBS |
          ________)            | DNSBL, SPF | <-------------  |        |
    _____)                     | Greylisting|   SMTP AUTH     +--------+
                               | DNSSEC     |   (port 587)
                               +------------+
    
    
    Typically the customer's SBS is behind a firewall which restricts SMTP 
    (port 25) connexions to come from the OA5 Servers.
    
    Incoming mail is directed through the OA5 servers by MX records in the DNS
    where first level SPAM elimination is performed on the basis of RBL listings, 
    SPF Failure, and Greylisting unknown senders (First message is given a 
    "Sorry we're not ready" response --- if it's on a real mailserver, and not 
    a spambot, it will try again 5 mins later.  Once a not-spam message has been 
    received further messages come through without delay)
    
    We also do a Baysian check on the contents, and a virus check with ClamAV.  
    The results of the Baysian check are recorded in a new header 
    "X-ASSP-SPAM: yes|no" and can be used to pre-file messages on receipt.  
    We also block "Dangerous" attachments from senders who the recipient has 
    not sent mail to and therefore whitelisted
    
    The Baysian check relies in part on the customers sending mail out by way 
    of our servers, and the incoming mail Baysian checks are skipped for mail 
    from correspondents who customers have sent mail to.
    [Append to This Answer]
    andrewATknotsDOTnet
    2007-Feb-20 12:38
    (Answer) (Category) Accessing Services at OA5 / YASK / Irial : (Category) My Email : (Category) Microsoft SBS : (Answer) Where do I configure SBS to send mail through the OA5 server?
    THIS IS NOT INTENDED FOR END USERS.

    THIS DOCUMENT CONTAINS NOTES FOR EXPERIENCED SYSTEM ADMINISTRATORS ONLY.

    USE ENTIRELY AT YOUR OWN RISK.

    Yes there are 2 things to notice when sending mail out through the OA5 server

    You need to use SMTP-AUTH to ok your message to be relayed on to the final recipient.

    You should connect to the OA5 server on port 587 (known as "submit")

    doing this will ensure your correspondents are whitelisted when they reply to you, and their mail can bypass many of the anti-spam checks.

    In SBS exchange system manager, there are 2 places to change things. Under connectors, delete Small Business SMTP connector (NB SBS 2003 only NOT 2000) if you're not using POP3 to pick up mail you can delete that connector as well This area does not exist in full exchange servers.

    The real setup is under servers / server name / protocols / SMTP / Default SMTP Virtual server --- highlight, right-click and chose properties -- in the popup there are 4 tabs -- chose Delivery. On that page there are some buttons to let you complete the configuration:

    Outbound Security sets the username and password (select basic security),
    Outbound Connection for the port (change to 587, default is 25)
    Advanced to set the host to connect to (mail.oa5.com).

    [Append to This Answer]
    andrewATknotsDOTnet
    2008-Jul-25 12:38
    (Answer) (Category) Accessing Services at OA5 / YASK / Irial : (Category) My Email : (Answer) Basic Email
    When you register your domain we set up a "catch-all" mail redirection for you. This is on a per-domain basis, and means that all the mail addressed to anyone, whether they exist or not, will be sent to your catch-all address.

    You can also have 5 real mailboxes, that is addresses that you can seperately control. These can be

    Aliases
    where you redirect the mail to an existing mailbox elsewhere (eg an aol account)
    Mailboxes
    We can provide you with IMAP or POP3 maildrops, where you can connect to pick up your mail.

    [Append to This Answer]
    andrewATknotsDOTnet, supportAToa5DOTcom
    2002-Jun-10 10:27
    (Answer) (Category) Accessing Services at OA5 / YASK / Irial : (Category) My Email : (Answer) How do I configure my E-Mail program to access my mail?
    The setup differs between mail programs, but some things are fixed, while there are some settings which are only decorative. in particular the following settings can be made in the account configuration on most mailers.

    Mailbox type: Choose either POP3 or IMAP OA5 supports both

    Mailbox server This will be IMAP.MYDOMAIN irrespective of what was chosen above

    SMTP Server SMTP.MYDOMAIN

    SMTP Port 587 (Email submiussion --- this requires authentication)

    Email address ME@MYDOMAIN tell OA5 what to set up.

    Account Name ME-MYDOMAIN this is only used on the server to find the mailbox, or to authorise outgoing mail. OA5 will set up the mailbox and let you know.

    Password Also notified from OA5 initially

    Authenticate SMTP yes but not with Microsoft authentication

    USE SSL is optional OA5 uses a certificate it created itself, as this is only to provide privacy,

    [Append to This Answer]
    andrewATknotsDOTnet, supportAToa5DOTcom
    2004-Jun-03 14:24
    (Answer) (Category) Accessing Services at OA5 / YASK / Irial : (Category) My Email : (Answer) Configuring for Outlook Express
    This is how it works..... Please substitute your name as appropriate

    OUTLOOK EXP|RESS USERS

    From the menus select: Tools->Accounts...

    Now select [Add->Mail..].

    In the [Display name...] field enter your preferred account name eg: simon@mydom.co.uk

    Now press Next>

    Select the field [I already have an e-mail address that I'd like to use] or [Enter the address you would like to use] (depending on the version of the program). and enter in the field: E-mail address: simon@mydom.co.uk

    Now press Next>

    From the [My incoming mail server is a] field, select either IMAP or POP (both will work see elsewhere for a discussion on which you might want) in general we recommend IMAP

    In the [Incoming mail (POP3, IMAP or HTTP) server] field enter imap.mydom.co.uk and in the [Outgoing mail (SMTP) server] enter smtp.mydom.co.uk

    Now press Next>

    Enter in Account name: your account name eg simon-mydom and in the [Password] field the password that was emailed to you separately
    password

    Leave selected (or select) [Remember password] This will save you getting prompted each time for it.

    DO NOT SELECT [Log on using Secure Password Authentication (SPA)] this MUST NOT BE SELECTED! It is only for talking to Microsoft servers

    Now press Next>

    This should finish the account setup, and return you to the window that you started with from Tools->Accounts

    YOU ARE NOT FINISHED YET!!!!

    Now select (right click) the newly created account, which is likely to be called
    imap.mydom.co.uk
    and select [Properties]
    On the [General] tab, change the top most field [Mail Account] to
    simon@mydom.co.uk
    then change the [Name] field to Simon Earthrowl
    Leave the [Include this account when receiving mail or synchronizing] selected
    Now select the [Servers] tab
    Select [My server requires authentication] box, then press [Settings]...
    Ensure that the [Use same settings as my incoming mail server] is set.
    Select the [Connection] tab, and set your preference there.

    On the [Advanced] tab change the SMTP Port to 587.

    Port 587 is the port for mail submission, it also works round the port 25 blocks put up by AOL, BT, freeserve and other providers. We do not accept mail for forwarding that is not authenticated, so if you get this wrong, you will be able to send mail to us, and other mailboxes locally, but not to people whose mail is elsewhere eg yahoo or google.

    Press [Apply], then [OK]

    Well Done!

    Final Stage

    Again select the properties of your account, when the window appears, select the IMAP tab at the top right.

    Make sure "Root folder path" is empty

    Check "Store Special Folders on the IMAP Server" these should be "Sent Items" and "Trash" respectively

    Click "Apply" and/or "OK" and you are done

    [Append to This Answer]
    supportAToa5DOTcom, andrewATknotsDOTnet
    2009-May-09 09:51
    (Answer) (Category) Accessing Services at OA5 / YASK / Irial : (Category) My Email : (Answer) Why does Outlook [Express] keep asking for my password?
    There are 2 possibilities

    1 Your password is wrong

    2 Your mailer is hammering at the mail server, and the server is throwing you off to make way for more reasonable users.

    The mailbox server is configured to throw off users who reconnect unreasonably fast -- We recommend you set your system to check for new mail at between 15 and 60 minute intervals. If you set for every 2 minutes, your mailer is quite likely to lock up fetching the next message, while you're still reading your last message. The minimum check period you should set is 3 minutes.

    There is an interesting aside to this, If you hit the "send and receive" button, and get the error message rather than successfully checking your mail, then you need to wait at least 2 minutes from when you get the error not from when your mail check last succeeded, so if your like me - make a coffee it takes more than 2 minutes and stops you pressing the send and check button every 119 seconds :-)
    [Append to This Answer]
    andrewATknotsDOTnet, pvdATbarnowlsDOTnet
    2003-Apr-19 15:28
    (Answer) (Category) Accessing Services at OA5 / YASK / Irial : (Category) My Email : (Answer) Ive just upgraded to eudora 5.2 and now I cant pick up my mail but get ssl errors
    If you have previously used eudora, and upgrade to version 5.2 then you will {possibly} no longer be able to pick up your mail. If you get errors refering to SSL certificates, then try this
    Under tools, options, checking mail
        then set secure sockets when receiving to "Never"

    Note: there may be other ways to fix this problem...

    [Append to This Answer]
    pvdATbarnowlsDOTnet
    2002-Nov-10 10:15
    (Answer) (Category) Accessing Services at OA5 / YASK / Irial : (Category) My Email : (Answer) Why does my deleted mail stay in my inbox rather than going into my deleted folder
    This is a function of your mail program. Many mail programs "delete" mail by copying it to a designated wastebin folder (Often "Trash" or "Deleted Items") and deleting the original from the source folder. You may have to set the trash folder explicitly in each account in your program.

    IMAP servers implement a delete comand by marking the message as deleted but do nothing further, they make it unreadable, unless you undelete it again.

    To get rid of deleted messages uou have to purge or expunge the mailbox. Many mail programs have a setting to "purge on close" which cleans up as you log off.

    In Outlook, to empty your deleted items automatically when you log off, select
     
    Tools : Options : In the tab other there is an option "Empty the deleted items folder on exiting" select this and the deleted items folder gets cleaned up when you exit.
     
    An alternative way to do this is: Select the deleted items folder with the right mouse button and pick properties. Select the Auto archive tab, and in that tab, clean out items older than 1 week, then check the permanently delete items check box. This means that the items remain in your deleted items folder for a few days just in case you make a mistake.
    [Append to This Answer]
    andrewATknotsDOTnet, pvdATbarnowlsDOTnet
    2003-Apr-24 12:14
    (Answer) (Category) Accessing Services at OA5 / YASK / Irial : (Category) My Email : (Answer) The same messages appear again as new every time I log in with pop
    Your mail program appears to be configured to "leave mail on server" and to be forgetting when it last connected to pick up mail.
    Usually pop clients delete messages as soon as they have successfully downloaded them, but sometimes you want to leave them on the server, eg when you are away from home, using someone else's computer to check your mail. (We would reccommend you use webmail to do this BTW)
    To check the settings in outlook go to Menu Tools / accounts / (chose the account ) / properties or change / More Settings / Advanced
    [Append to This Answer]
    andrewATknotsDOTnet
    2003-Sep-04 14:46
    (Answer) (Category) Accessing Services at OA5 / YASK / Irial : (Category) My Email : (Answer) Can I set up Automatic Replies and Vacation Messages?
    There is a powerful mail filtering engine included with your mailbox. It is called sieve. We have provided a tool to let you set up automatic actions, including sending auto-replies, vacation messages, and discarding junk mail.
    It can be found at

          http://www.yourdomain/cgi-bin/websieve.pl

    NB substitute your own domain name for "yourdomain" in the above url

    Just one warning though! You need your password to access this tool, and if you set it the wrong way, the tool will throw away all your email. Since it needs your password, we take no responsibility whatsoever for how you set up your filtering. In particular if you lose mail, it's not OA5's problem.

    Dont forget that once you have created rules, you also need to go into Advanced Options and turn the default script on. - Then test its working
    When you set an auto reply, part of what you configure is a set of email addresses that the system will consider to be 'you'. A reply will only be sent if 'you' are in the To or Cc lists in the incoming mail. This stops your auto-responder replying to mailing lists, adverts or whatever.

    The system also looks at the time you have configured, and will only send one message to any sender no matter how many mails they send you in that period.

    [Append to This Answer]
    andrewATknotsDOTnet, pvdATbarnowlsDOTnet, supportAToa5DOTcom
    2010-Jan-28 11:14
    (Answer) (Category) Accessing Services at OA5 / YASK / Irial : (Category) My Email : (Answer) How much mail can I keep in my IMAP folders?
    Yes, there is a limit. It's huge.

    There is a limit of 150 Megabytes on your mailstore. That's 450 novels!

    Of course you can also archive old messages onto your local computer, either because they're getting old, and you don't need those messages so much, or to make space for someone to send you one PowerPoint Presentation :-)

    When you do reach the limit, new messages will hang around for 3 days in case you free up some space. If you don't they will be returned to sender.

    Of course you may want to keep your current mail on line to access from anywhere. If there is not enough storage for what you need, the limit can be increased for a fee. Contact salesAToa5DOTcom

    [Append to This Answer]
    andrewATknotsDOTnet, supportAToa5DOTcom
    2007-Jul-11 14:33
    (Answer) (Category) Accessing Services at OA5 / YASK / Irial : (Category) My Email : (Answer) What if someone sends me a huge attachment?
    The size limit on your mailbox is based on the size when the message is about to be delivered, so if we have the disk space, you can recieve a message bigger than your 150Mb limit.

    You will not be able to recieve anything else until you have deleted it, as you will then be over quota

    [Append to This Answer]
    andrewATknotsDOTnet, supportAToa5DOTcom
    2008-Jan-14 12:43
    (Answer) (Category) Accessing Services at OA5 / YASK / Irial : (Category) My Email : (Answer) I'm over quota and now I can't delete anything to make space
    Your IMAP mailbox counts all the folders, including TRASH in your quota, it also counts deleted messages which have not been purged, as they are still taking up space·

    Outlook [Express] "deletes" mail by making a copy in the TRASH folder, and marking the original as deleted, making the problem worse when you're trying to get back some space.

    To permanantly delete messages, from Outlook, without making copies in the TRASH folder, select the messages you want to get rid of, then holding down the <Shift> key on your keyboard, press the <delete> key. You will be asked to confirm that you really want to permanantly delete the messages.

    Don't forget you can copy messages from your IMAP folders to folders on your local disk before you delete them from your IMAP folder

    [Append to This Answer]
    andrewATknotsDOTnet
    2003-Aug-15 16:53
    (Answer) (Category) Accessing Services at OA5 / YASK / Irial : (Category) My Email : (Answer) How do I get rid of mail from my Trash folder
    Your Trash folder is where messages are copied to when you delete them from other folders using Webmail or Outlook/Outlook Express.

    The space they take there still counts against your quota, so you may want to get rid of them quickly.

    There are 3 seperate answers here, one for a "Quick Fix", one for the general answer in Webmail, and one for the general answer for outlook

    Quick Deletion

    In Outlook (Express) you can get rid of things easily, from any folder.

    Select the folder in the left hand folder list, and when the folder listing is displayed, select the messages you want to get rid of.

    If you want to get rid of them all, click on any message, then press [ctrl]-A to select all messages

    Then press [Shift]-Delete, you will be asked if you really want to permanantly delete the selected messages

    WebMail

    In webmail you need to mark the messages in the Trash folder for deletion

    Click on Trash in the folder list on the left pane, and when the folder contents are displayed click [Toggle All] to select all messages, then [Delete]

    Outlook [Express]

    Outlook can be set to tidy up when you log off by emptying the Trash folder automatically

    **** Need text here ****

    [Append to This Answer]
    andrewATknotsDOTnet
    2003-Oct-03 10:49
    (Answer) (Category) Accessing Services at OA5 / YASK / Irial : (Category) My Email : (Answer) Vacation does not seem to be replying to mail I receive
    Well I presume we're talking about a vacation reply set in websieve. There are a few simple rules associated with the program.

    First off one of the "vacation addresses" has to appear in the 'To' or 'Cc' lines in the message, to trigger a reply.

    Next the message has to come from an address which has not sent to you in 'n' days of the vacation script running --- every time a response is sent, the address is saved, and not replied to again for the 'n' days you set, so only new correspondants get sent the message

    Finally you have to turn on scripts under the advanced menu before it will run

    [Append to This Answer]
    andrewATknotsDOTnet
    2003-Dec-15 10:52
    (Answer) (Category) Accessing Services at OA5 / YASK / Irial : (Category) My Email : (Answer) Vacation is using a really strange address as the From in replies
    When you set up vacation there is a list of addresses (vacation addresses) that you want to trigger replies. A vacation message is only sent when one of these addresses is in the To or CC list of a message, so you don't reply to mail from a mailing list.

    The first address in this list will be used as the From adderess in the reply

    By the way -- the sender of the vacation message is '<>' the magic address used by the mail system for information messages. Some broken mail systems do not accept mail from '<>' so not all vacation messages will get through

    [Append to This Answer]
    andrewATknotsDOTnet
    2003-Dec-15 11:09
    (Answer) (Category) Accessing Services at OA5 / YASK / Irial : (Category) My Email : (Answer) Why can't I send mail to anyone but OA5, myself and my colleagues? [Relaying not allowed without authentication]
    You'r probably getting some sort of error popup message which says burried amongst a lot of other stuff "550 Relaying not allowed without authentication"

    This means that somehow you've not checked "Server requires authentication" on your outgiong SMTP connexion, see (Xref) How do I configure my E-Mail program to access my mail? and (Xref) Configuring for Outlook Express

    [Append to This Answer]
    andrewATknotsDOTnet
    2004-Apr-29 20:07
    (Answer) (Category) Accessing Services at OA5 / YASK / Irial : (Category) My Email : (Answer) Mail to me is being bounced, help!
    When someone sends you mail out of the blue that looks like SPAM it is bounced with the messages

    Message appears to be unsolicited

    This never happens to someone you have sent mail to through OA5. These respondants are whitelisted (Xref) So how do addresses get whitelisted?

    [Append to This Answer]
    andrewATknotsDOTnet
    2004-Feb-27 12:07
    (Answer) (Category) Accessing Services at OA5 / YASK / Irial : (Category) My Email : (Answer) Which is better IMAP or POP3 -- my mailbox is whichever
    Actually your mailbox is a generic mailbox, you are accessing it using IMAP usually, but you could use POP3 and when you use webmail that always uses IMAP. In general we recommend using IMAP, as we back up your messages, along with everything else on the servers, and you can read your mail from lots of different computers or handheld devices.

    The difference is where the messages are stored. with POP3 you copy the message to your local PC and delete it from the server, either immeadiatly, or after a few days depending on how you have things configured. This means it's not there for your other PC/handheld.

    With IMAP the messages stay on the server, and are fetched on an as-needed basis, and you can have folders on the server. You can have local copies by synchronising your folders to your pc, and then work off-line and re-synchronise when you next connect. This is often the best way to work.

    An advantage of IMAP is that you can use websieve to pre-file messages as they are delivered into different folders.

    The big benefit of IMAP is that you can use any browser and webmail to pick up your email when you are out of the office, your mail is not on the pc locked in your office.

    [Append to This Answer]
    andrewATknotsDOTnet, supportAToa5DOTcom
    2009-Nov-03 15:12
    (Answer) (Category) Accessing Services at OA5 / YASK / Irial : (Category) My Email : (Answer) My ISP blocks outgoing mail not sent through their servers
    That is because people can send SPAM if the port is left open. There is another port used for sending your mail for the first hop which accepts authenticated connexions

    That port is 587

    When you set up your mail you should set this as the submission port for SMTP on SMTP.your.dom.ain

    [Append to This Answer]
    andrewATknotsDOTnet
    2004-Jun-03 16:28
    (Answer) (Category) Accessing Services at OA5 / YASK / Irial : (Category) My Email : (Answer) My mail is not arriving -- Help
    The most likely reason for mail not arriving is that you are over quots.

    Outlook is rather sub-standard in that it does not notify you when the server tells it that you are running out of space. The server is configured to notify you when you go over 80%.

    You can check your quota, using the websieve tool (Xref) Can I set up Automatic Replies and Vacation Messages?

    OK so you're over quota, if you're an IMAP user you need to make space (Xref) Why does my deleted mail stay in my inbox rather than going into my deleted folder.

    If you're a pop3 user, you've probably set up (or not unset) your POP client to leave a copy of your mail on the server, and this is a different symptom from (Xref) The same messages appear again as new every time I log in with pop but you should again unset the flag to download and delete your incoming mail. (details in the link)

    Normally POP3 mailboxes do not run into this problem

    [Append to This Answer]
    andrewATknotsDOTnet
    2004-Jun-25 18:29
    (Answer) (Category) Accessing Services at OA5 / YASK / Irial : (Category) My Email : (Answer) Configuring Versamail on a Palm handheld
    We will assume that you have configured the Bluetooth connection to your phone, and have GPRS working. If you cannot browse with webpro. please get that working first. We don't support getting basic connectivity, only the specifics of connecting to mail held on our servers.

    Versamail can support up to eight accounts, so you can probably install other services alongside mail from your private mailbox. Again we're only going to look at setting up to connect to your mailbox on the OA5 service.

    We will be setting up a Network mail account, rather than a synchronise-only account. Synchronise-only applies to mail accounts which you use with HotSync, which rather misses the point we think.

    Select Menu > Accounts > Account Setup > New
    Give your account a name that makes sense to you --- this is only an aide-memoir
    Select Mail Service > Other
    Select Protocol > IMAP
    Do NOT check Synchronise only Account

    Tap Next

    Next put in the Username and password. Remember that the username is the account name provided to you by OA5, not your email address

    Tap next

    Now put in your email address
    The server address will be imap.YOURDOMAIN (substitute your domain name for YOURDOMAIN)
    The smtp server will be smtp.YOURDOMAIN
    Tap Next

    Tap Next again to set additional parameters

    We SUGGEST you set
    Get unread mail only
    Don't set delete on server, unless your palm is going to be your only mail reader
    Don't check use secure connection

    The default 5kb maximum message size is reasonable for text messages, you might want to go to 10kb if most people sendyou HTML mail, or 20kb if they send you Misrosoft HTML from Outlook

    Tap Next

    Set your Name as you want it to be seen by those you send mail to
    You can leave reply-to blank, as you have already set your From address correctly
    You might want to send yourself a bcc of every message you send, so that you have a record of the mail you sent on the server.

    Tap Next

    You can now set up a signature. It's often a good idea to give people a phone number, and or postal address

    Tap Next

    This is important
    Set the port number to 587
    Set My server requires authentication (ESMTP)
    Your account name and password should be copied from the imap server settings if not you will have to enter them again

    Tap Done

    Unfortunately that's not all.

    [Append to This Answer]
    andrewATknotsDOTnet
    2004-Jun-28 12:44
    (Answer) (Category) Accessing Services at OA5 / YASK / Irial : (Category) My Email : (Answer) Why has SquirrelMail lost my configuration>
    You've exceeded your quota for your website. Squirrelmail saves your profile in the directory "/webmail.data" under your website.

    When you are over quota, and you open a file to write to it, the file is emptied so that you can put new information in it. If you are over quota though, the system prevents you from writing anything, so when you close the file it has shrunk to zero length.

    You can either delete some files from your website, or call OA5 on +44-1279-843147 about extending your hosting packager.

    [Append to This Answer]
    andrewATknotsDOTnet
    2004-Oct-13 08:30
    (Answer) (Category) Accessing Services at OA5 / YASK / Irial : (Category) My Email : (Answer) 550 5.7.1 my.dom does not send mail through x.y.z.n, please discard What does this mean?

    When you get error messages containing something like:

    A message that you sent could not be delivered to one or more of its
    recipients. This is a permanent error. The following address(es) failed:

    me@my.dom.ain
    SMTP error from remote mailer after end of data:
    host mail.xyz.com [1.2.3.4]: 550 5.7.1 my.dom.ain does not send
    mail through 5.6.7.8, please discard

    There are two possible explanations

    1. Someone (probably a virus) is using your e-mail address to send mail / virii / SPAM / Phishing as though you had sent it (not something one wants at all) or
    2. You did sent the mail yourself, but not from anywhere we had configured for anti-spoofing. Please see (Xref) How do I configure my E-Mail program to access my mail? about connecting to our servers on port 587, to send mail -- you can do this from anywhere you have a connexion, even if the ISP blocks access to port 25 (the normal mail-send port)

    [Append to This Answer]
    supportAToa5DOTcom
    2009-Nov-03 15:16
    (Answer) (Category) Accessing Services at OA5 / YASK / Irial : (Category) My Email : (Answer) I keep getting bounces for SPAM I have not sent -- can you do something?
    Well to start with we don't want to stop normal error messages, otherwise you would never know if a mail you sent failed to get through. The problem is that these bounces you are getting are produced by normal mail systems, and we can't distinguish them for you.

    The messages that trigger these failures are generated by spam-send programs, which generate from addresses, which sometimes are the addresses of our customers. The source machines are usually on dialup / dynamic Broadband and it's relatively easy for a responsible ISP to refuse them before they get into the email system. For instance while writing this note OA5 blocked SPAM attempts --- the sending system connected, but did not log in to send mail (as you our customers do)

    Sep-29-06 14:01:22 201.40.0.122 BL <archimedesbethel@royalcaribbeanonline.c >| unchecked (RBL Dropped)
    Sep-29-06 14:01:23 24.170.25.246 BL <gthpofth@rr.com> >| unchecked (RBL Dropped)
    Sep-29-06 14:01:24 201.40.0.122 BL <arabychesterton@roulette.org> >| unchecked (RBL Dropped)
    Sep-29-06 14:01:36 204.11.103.232 BL <zoe@stilodoroto.com> >| unchecked (RBL Dropped)
    Sep-29-06 14:01:39 66.218.17.140 BL <darling2plc@earthlink.net> >| unchecked (RBL Dropped)

    This sort of block deals with a lot of SPAM. The next thing is checking what machine is sending the mail. We use a system called SPF to publish which machines are places where your (the sender's) domain will send mail from. When mail comes from somewhere else then it should be refused. Again from our logs:
    Sep-29-06 14:03:08 212.159.14.132 SPF <AlertsBR@xxxxxxxxx.Org> >| AlertsBR@xxxxxxxxx.Org (SPF Dropped)

    The limit is with the thousands of other systems out there, most of which don't make these checks, and return error messages to the purported sender (you)

    [Append to This Answer]
    andrewATknotsDOTnet
    2006-Sep-29 14:17
    (Answer) (Category) Accessing Services at OA5 / YASK / Irial : (Category) My Email : (Answer) How do I turn off SPAM Filtering?
    The SPAM filter is a SIEVE script, run when your mail is delivered, to put the message into your SPAM folder, by noticing the markers the spam-detection system has put on the message.

    You can change this script by logging on (with the same username and password as your email to

        http://imap.YOURDOMAIN/cgi-bin/websieve.pl

    where YOURDOMAIN is the same as the domain part of your email address, after the '@' sign.

    In the Advanced tab you can turn the script entirely

    [Append to This Answer]
    supportAToa5DOTcom
    2007-Jul-11 14:28
    (Answer) (Category) Accessing Services at OA5 / YASK / Irial : (Category) My Email : (Answer) How can I see the mail coming in for my assistant when she's not in?
    The easiest method is to set the access on the folders you need to see such that your account can read them.

    If your mail client can't do it then yoi can do it through the websieve interface at http://imap.<mydomain>/cgi-bin/websieve.pl using her username and password

    You will then have to subscribe to those mailboxes under the "other users" hierarchy to see them (right click on your folders, and select 'IMAP Folders' if you use Outlook / Outlook Express)

    The UGLY way is to add her account as an extra account in your email. This has one advantage in that you can reply 'as her,' but will considerably increase the system load

    [Append to This Answer]
    supportAToa5DOTcom
    2008-May-08 09:33
    (Answer) (Category) Accessing Services at OA5 / YASK / Irial : (Category) My Email : (Answer) I get the message "Mailbox greylisted please try again later" when sending
    You've forgotten to set port 687 for your outgoung mail connection, and to set authentication on for outgoing mail.
    [Append to This Answer]
    supportAToa5DOTcom
    2009-Nov-02 19:43
    (Answer) (Category) Accessing Services at OA5 / YASK / Irial : (Category) My Email : (Answer) I have a strange email, can you tell me what's going on please?

    If you want us to look at messages that you have received to help you understand what the mail system is doing, you have to give us the bits of the message we need. We need the internet headers of the message you have received, in particular the bits that are usually hidden from you, and not always included when you forward a message.

    We do not need the Subject or From address, neither of these fields appear in our log files. We do need the Message-Id, the Sender (which sometimes appears as Return-Path) and the Received lines.

    You can provide this information easily

    1. highlight the message in your Inbox listing
    2. right-click with your mouse
    3. Select Properties or Message Options in the pop-up menu
    4. In the window that opens select Internet headers
    5. Click in the data panel and type Ctrl-A by holding down the ctrl key, and pressing a. This will highlight and select all the text
    6. Type Ctrl-C to copy it to your clipboard
    7. You can now close the window, and paste the saved text into your mail to us
    Thanks!


    [Append to This Answer]
    supportAToa5DOTcom
    2009-Nov-03 14:56
    (Category) (Category) Accessing Services at OA5 / YASK / Irial : (Category) My PC
    General hints on getting the best out of your PC / Windows submitted by our customers. Many of the answers here will have been prompted by user problems
    Subcategories:
    (Category) Windows XP Tweaks - Un-needed Services

    Answers in this category:

    [New Answer in "My PC"]
    supportAToa5DOTcom, robinATitguruDOTbiz
    2003-Nov-28 09:33
    (Category) (Category) Accessing Services at OA5 / YASK / Irial : (Category) My PC : (Category) Windows XP Tweaks - Un-needed Services
    Subcategories:

    Answers in this category:
    (Answer) How to access a list of running services on Windos XP

    [New Answer in "Windows XP Tweaks - Un-needed Services"]
    supportAToa5DOTcom, robinATitguruDOTbiz
    2004-Feb-25 17:09
    (Answer) (Category) Accessing Services at OA5 / YASK / Irial : (Category) My PC : (Category) Windows XP Tweaks - Un-needed Services : (Answer) How to access a list of running services on Windos XP
    Click the start button and choose the "run" option.Type in "Services.msc" and click ok.This will bring up a window showing all services.
    HINT: It looks better if you click on the "standard" tab at the bottom which makes the list easier to look at.
    HINT: To see service which are currently running, click on the heading "status" which will sort the list by runing and non-running services.
    [Append to This Answer]
    robinATitguruDOTbiz
    2003-Dec-13 08:55
    (Category) (Category) Accessing Services at OA5 / YASK / Irial : (Category) Transferring from another ISP
    Moving my website from a different ISP runs the risk of losing service, how can I safely make the transfer
    Subcategories:
    (Category) When should I change ISP?

    Answers in this category:
    (Answer) How do I transfer a domain from another ISP
    (Answer) What is the process used to transfer a domain
    (Answer) Transferring a domain ending in '.UK'
    (Answer) I want to transfer my domain to a different hosting provider. How do I do this?

    [New Answer in "Transferring from another ISP"]
    supportAToa5DOTcom, andrewATknotsDOTnet
    2009-Oct-26 19:36
    (Category) (Category) Accessing Services at OA5 / YASK / Irial : (Category) Transferring from another ISP : (Category) When should I change ISP?
    Renewing a domain takes some time, as does transferring it. Most ISPs and registries will expecxt you to pay for another year as part of renewing your domain. You should consider transferring 3 months before it's time to renew, and if you're within a month, you may be rather late.
    Answers in this category:
    (Answer) I've paid for a year with my old ISP, shouldn't I wait before changing?
    [New Answer in "When should I change ISP?"]
    andrewATknotsDOTnet, supportAToa5DOTcom
    2002-Jun-08 14:38
    (Answer) (Category) Accessing Services at OA5 / YASK / Irial : (Category) Transferring from another ISP : (Category) When should I change ISP? : (Answer) I've paid for a year with my old ISP, shouldn't I wait before changing?
    You really have to move ahead of time or you might end up paying twice for a whole year's worth of your hosting.
    [Append to This Answer]
    supportAToa5DOTcom
    2002-Apr-09 15:03
    (Answer) (Category) Accessing Services at OA5 / YASK / Irial : (Category) Transferring from another ISP : (Answer) How do I transfer a domain from another ISP
    The problem with moving an existing site is achieving a transition without loss of service. Your site is currently on another ISP's servers, You may on may not have a copy of the site on your PC. Let's assume you don't, because you can simply skip the first bit if you have.
    Your site is www.yourdomain, and all the files and folders are on your current ISP's server. The first thing you have to do is copy your site onto your PC.

    If you use Macromedia dream-weaver or Hotmetal to manage your site, or ws-ftp to copy it, it is relatively simple to copy the whole structure. Details of how to access your site will be available from your current ISP.

    Once you have copied your site to your local system, please contact OA5.com. We will create an account on our server which you can use to upload your site again. At this point your site will still point to your old server, so you can take your time to copy all your data onto your OA5.com server, as the old site will continue to work.

    Once everything is copied we will then change the DNS. At this point your new site will gradually go live over a period of some hours, as the DNS changes become visible. It takes a while because systems are allowed to cache old answers for a while.

    [Append to This Answer]
    supportAToa5DOTcom
    2002-Jun-08 14:35
    (Answer) (Category) Accessing Services at OA5 / YASK / Irial : (Category) Transferring from another ISP : (Answer) What is the process used to transfer a domain
    Get site owner to copy site to local disk, or give us ftp access to site
    Make a safe copy of the site on the server we will host it on, under a test domain, check it works
    Make database entry for the real domain
    Set up mailboxes for the domain
    Move test directory to correct location
    We fill in all the details on a transfer form for OpenSRS
    OpenSRS sends the admin contact an email requesting confirmation
    Admin contact confirms
    Previous registrar sends an email to admin contact trying to confuse them into not transferring
    Admin contact gets confused
    Transfer denied
    Re-educate admin contact
    Repeat transfer sequence until admin contact gets it right
    Transfer accepted
    We change nameservers at OpenSRS
    Site goes live on our servers on the following midday
    [Append to This Answer]
    andrewATknotsDOTnet
    2002-Nov-15 09:27
    (Answer) (Category) Accessing Services at OA5 / YASK / Irial : (Category) Transferring from another ISP : (Answer) Transferring a domain ending in '.UK'

    Domains ending in .UK are held on behalf of the owners by members of Nominet, each of whom has an IPS-TAG which is a key used to allow that member to control their customer's domains, what nameservers they use, who the contacts are etc

    To transfer the domain to us the tag has to be changed to OA5's tag OCTARINE and this is usually acheived by writing to your current ISP and requesting that they change it. Here is a sample message:



    Dear ISP,
    Re: mydomain.co.uk

    Thank you for your past services. We now find we wish to change Service provider for our domain. To this end please arrange for mydomain.co.uk to be retagged to IPS-TAG OCTARINE

    Thank you


    On behalf of mydomain.co.uk



    If this does not work then you may have to apply to Nominet to get them to make the change


    [Append to This Answer]
    supportAToa5DOTcom
    2005-Dec-19 19:05
    (Answer) (Category) Accessing Services at OA5 / YASK / Irial : (Category) Transferring from another ISP : (Answer) I want to transfer my domain to a different hosting provider. How do I do this?

    We're sorry we're not providing what you need, but if you do need to go, so be it.

    There are three cases here

    1. You just want different hosting facilities, but want us to continue handling your mail for you

      For this case you simply need to tell us the address of your new web server, and we'll change the DNS t make it happen.

    2. You want to transfer away completely, and your domain ends in '.uk'.

      In this case you need to rell us the IPS TAG of your new ISP. We will then transfer your domain to them

    3. You want to transfer completely, and your domain has an ending other than '.uk'.

      Drop us an email to support, to get the release code for your domain, then go to your new ISP and get them to request the transfer. You will need the release code to authorise the transfer.

    As a matter of policy we will facilitate your transfer in a timely manner


    [Append to This Answer]
    supportAToa5DOTcom
    2009-Oct-26 19:48
    (Category) (Category) Accessing Services at OA5 / YASK / Irial : (Category) Swedish Version
    Detta är en levande FAQ (Frequently Asked Questions). Som kund kan du posta en fråga och OA5/YASK/Irial kommer att svara på frågan.

    Klicka på "new Answer" mot slutet av kategorisidan flr att få upp inamtningssidan. Försöka att hålla frågan kort och helst till en rad, ockgivetvis bara om OA5 / YASK / Irial tjänster.

    DU kan också lägga till text till dom svar som redan finns, om du tycker att mer information behövs. Vi reserverar oss rätten till att ändra och ta bort kommentarer.

    För att lägga in ändringar och justera de svar som finns så måste du logga in och bekräfta vem du är. Den email adress som du anger kommer att få en email adress med en valideringskod. Denna ska du knappa in för att verifiera att du har kontroll på den email adressen du anger.

    Underkategorier:

    Svar i denna kategori:

    [New Answer in "Swedish Version"]
    andrewATknotsDOTnet, janATirialDOTcom, infoATnorraekonomibyranDOTse
    2006-Mar-30 14:26
    (Answer) (Category) Accessing Services at OA5 / YASK / Irial : (Answer) What do I get for my money?
    Basic service costs only 97p per week, ie £50 +VAT per year. (plus VAT)

    OA5's basic service gives you a set of benefits

    Domain Registration
    We handle your domain renewal as part of the service
    DNS Service
    This makes your domain live on the internet.
    OA5 provides DNS from at least two countries, using different Tier 1 carriers. your service will not get lost by a simple outage anywhere
    1Gb web space
    With your own cgi-bin directory
    5 Mailboxes
    Your mailboxes can be POP3 or IMAP, unless you really know you want POP3 we suggest you use IMAP
    Catch-all forwarding
    Other addresses in your domain forwarded to a mailbox you specify, or an "Invalid address" error message, with the growth of SPAM most customers find the "Invalid address" most useful
    Webmail
    In conjunction with your IMAP Mailbox, access your mail through a browser from any internet connexion, anywhere in the world, as a backup to your normal mail program
    Filtering and "I'm away" Messages
    Control how your mail is handled before you pick it up. Send "we'll get back to you" messages, throw away persistent adverts...

    [Append to This Answer]
    supportAToa5DOTcom
    2009-May-15 09:45
    (Answer) (Category) Accessing Services at OA5 / YASK / Irial : (Answer) Why do you send out renewal notices 6 months before renewal is due?
    It is only possible to renew UK domains within 6 months of the expiration date, and .UK domains can only be renewed in 2 year lumps. Many customers are concerned to be sure of retaining their rights to a name.

    Additionally some companies send out not-quite-invoices six months before the renewal date. Some of our customers have been fooled by these and sent cheques which have been cashed, though they have received no service in return.

    Finally the renewal date is the last day that has been paid for. Service will be withdrawn after that day, so it is important for uninterrupted service to renew in good time before the expirey date.

    [Append to This Answer]
    andrewATknotsDOTnet, supportAToa5DOTcom
    2006-Sep-04 09:23
    (Answer) (Category) Accessing Services at OA5 / YASK / Irial : (Answer) I need Help! Who do I contact?

    Please first check the rest of this FAQ in case your question, or something very like it is lurking where you didn't expect. If you still need help, then you can send email to

    support@oa5.com

    or phone us on 01279 843147. Please do not use personal email addresses when you need us to do something for you, the support address is looked at, even when individuals are on holiday.


    [Append to This Answer]
    supportAToa5DOTcom
    2009-Oct-26 19:25
    (Answer) (Category) Accessing Services at OA5 / YASK / Irial : (Answer) My question is not here, what do I do?
    Well if you're sure we didn't express the question slightly differently, please look at where the best place for your question would be, and put it in to the FAQ for us to supply an answer.

    Please send a note to support @ oa5.com to let us know you've done this, and we will be able to copy you with the answer when we write it. This is also the address to use for anything that could be categorised as a support request, as it goes to more than one person.

    You can also phone us in office hours

    [Append to This Answer]
    supportAToa5DOTcom
    2006-Oct-28 18:03
    This document is: http://faq.oa5.com/cgi-bin/fom?file=1
    [Search] [Appearance] [Show Top Category Only]
    This is a Faq-O-Matic 2.719.