Cannot send email using SMTP

Hi,
For the last three days I have been unable to send any email via outlook using the SMTP server (mail.btinternet.com). I get repeated requests to enter my network password, but it is not accepted. The password is correct (I have tried retyping it numerous times) and I can still log into webmail using it. This problem occured on both my computers simutaneously and without any changes being made, so it is not setting related. I have tried creating the account again, but it fails due to this issue. Incoming mail is unaffected.
Please could someone offer some help? Is there a known issue as I am unable to find anything to suggest there is on the BT service status page?
Andy

Hi bernies41802,
Thanks for posting.
Sorry for the problems you're having.  Has your email address been migrated to the new BT Mail platform?  You can check here - Check which BT email service you are using
If it shows on the new BT Mail platform double check your settings are correct here - BT Mail: What are the settings for outgoing and incoming mail servers?
Post back and let me know how you get on.
All the best,
Robbie
BTCare Community Mod
If we have asked you to email us with your details, please make sure you are logged in to the forum, otherwise you will not be able to see our ‘Contact Us’ link within our profiles.
We are sorry that we are unable to deal with service/account queries via the private message(PM) function so please don't PM your account info, we need to deal with this via our email account :-)
If someone answers your question correctly please let other members know by clicking on ’Mark as Accepted Solution’.

Similar Messages

  • How to remove error 59 which occurred while using Send Email Using Smtp Client .VI in Labview 2013.

    Hi,I am trying to run Send Email Using Smtp Client .VI in Labview 2013 examples ,but it gives error 59.Please can anyone suggest how to remove the error.The printscreen is attached below.
    Solved!
    Go to Solution.
    Attachments:
    error.docx ‏310 KB

    Thanks for the help,but i have set the parameters right but still it does not work for me.Please suggest me reasons and how to correct them.
    Attachments:
    error.docx ‏270 KB

  • IPhone cannot send email using Yahoo account. iPhone no envia correo Yahoo.

    Hi Everyone,
    I just got my iPhone from Movistar Venezuela and I've found I'm unable to send email using my Yahoo account. However, I can receive Yahoo email just fine (paid $20 for Mail Plus subscription), my GMail account can send and receive perfectly, and I can go surfin' Safari with no problems too.
    The error message I get is "Cannot send mail: an error occurred while delivering this message". I called Movistar Customer Support and they said everything was fine on their end...
    In typical Apple fashion, the error message is so simple I have no idea where the problem is. Does anyone know how can I get more information and how to solve this annoying problem? My Yahoo account is actually my primary account...
    Thanks in advance!
    Saludos a todos,
    Acabo de comprarme un iPhone de Movistar en Venezuela y me encuentro sin poder enviar emails con mi cuenta Yahoo. Sin embargo, si puedo recibir correo Yahoo bien (pague $20 por mi suscripcion a Mail Plus), mi cuenta de GMail si puede enviar y recibir email sin problema y puedo navergar con Safari sin ningun problema.
    El mensaje de error que recibo es el siguiente": "No se puede enviar correo: se ha producido un error al enviar el mensaje". Llame a Atencion al Cliente de Movistar y me dijeron que no habia ningun problema con mi linea o con su servicio de datos...
    Como tipica cosa Apple, el mensaje de error es tan simple que no tengo NI IDEA de cual es el problema. Alguien mas ha sufrido este problema? Sabe alguien como puedo obtener mas informacion de este error y como solucionarlo? Lamentablemente, mi cuenta Yahoo es mi correo principal...
    Gracias de antemano!

    Creo que resolvi el problema, temporalmente.
    1) Borra tu cuenta
    2) Vuelvela a crear
    3) Ve a Ajustes
    4) Ve a Mail Contactos Calendarios
    5) Ve a la cuenta problematica
    6) Ve a SMTP
    7) Anadir nuevo
    8)
    Nombre servidor: smtp.mail.yahoo.com
    Nombre de usuario: no dejar vacio
    Contrasena: no dejar vacio
    Usar SSL: si
    Autenticacion: Contrasena
    Puerto del Servidor: 25
    Lo consegui de aqui: http://www.emailaddressmanager.com/tips/mail-settings.html
    Dime que tal te funciona.
    I think I solved the issue, temporarily at least
    1) Delete account
    2) Create again
    3) Go to settings
    4) Go to Mail, Contacts, Calendars
    5) Open problematic account
    6) Go to SMTP
    7) Add a new server
    8)
    Name: smtp.mail.yahoo.com
    User name: do not leave blank
    Password: do not leave blank
    SSL: Yes
    Autentication: Password
    Port: 25
    I got this info from: http://www.emailaddressmanager.com/tips/mail-settings.html
    Let me know how this works

  • Cannot send email using port 465 from a network other than my ISP

    I cannot send email from my ISP POP mail account when I am in a different network (e.g. when traveling). This happens with my iPad and my iPhone. However, I can send mail if I turn off wifi and use 3G. The outgoing port is 465.
    Using my .mac account I don't have any problems sending mail using wifi or 3G.
    I have tried adding smtp.mac.com or smtp.me.com as a secondary server to my POP account but it does not work. The secondary server disappears after I add it.

    Contact your isp and ask them what the smtp settings are for when you are traveling. Most isps have different settings for sending email when off their network.

  • Cannot send email using Gmail after iOS 5

    Since updating to iOS 5, I cannot send email from my Gmail account on my iPhone. I receive email fine, but when trying to send I get the error:
    Cannot Send Mail
    Check the settings for the outgoing servers in Settings > Mail, Contacts, Calendars
    I have erased my Gmail account and re-set it up numerous times, and restarted my phone in between doing so. The wizard works perfectly fine, my password is accepted, and like I mentioned email comes in perfectly. I do not have this problem sending mail from iCloud on the same phone.
    One thing I did do is attempt setting Gmail up as an Exchange account so that I could use push, but it killed my battery so I erased it. This might have been when the problem began but I'm not positive.

    I'm not sure what exactly I did that finally fixed it, but I erased my iCloud and Gmail accounts, restarted the phone, and added Gmail first. But I removed Gmail so many times who knows what actually did it.

  • Sending email using SMTP and Java

    Hi guys
    I am using the following code to send an email:
    private void sendEmail(String mDate, String time) {       
            Date date = new Date();
            DateFormat dateFormat = DateFormat.getDateInstance(DateFormat.FULL, Locale.ENGLISH);
            // Open port to server
            try {
              smtpSocket = new Socket(SMTP_SERVER, SMTP_PORT);
              os = new DataOutputStream(smtpSocket.getOutputStream());
              is = new DataInputStream(smtpSocket.getInputStream());
              // Connection was made.  Socket is ready for use.
              if(smtpSocket != null && os != null && is != null) {
                try {
                    // email header
                    os.writeBytes("HELO\r\n");
                    // set the reply email address
                    os.writeBytes("MAIL From: <[email protected]>\r\n");
                    // give the address of the people that we want the email sent to
                    for(int i=0; i<RECIPIENTS.length; i++) {
                        os.writeBytes("RCPT To: <" + RECIPIENTS[i] + ">\r\n");
                        System.out.println(RECIPIENTS);
    // data header
    os.writeBytes("DATA\r\n");
    os.writeBytes("X-Mailer: Via Java\r\n");
    os.writeBytes("DATE: " + dateFormat.format(date) + "\r\n");
    os.writeBytes("From: Characterisation System Update\r\n");
    os.writeBytes("Mime-Version: 1.0\r\n");
    os.writeBytes("Content-Type: text/html; charset=\"ISO-8859-1\"\r\n");
    //os.writeBytes("Content-Transfer-Encoding: 7bit;\r\n");
    for(int i=0; i<RECIPIENTS.length; i++) {
    os.writeBytes("To: <" + RECIPIENTS[i] + ">\r\n");
    // get the details of the test and enter them into the message body
    String message = "<HTML><BODY>" +
    "\r\nThe following System has not received a data packet for at leat 1 hour:" +
    "\r\n<BR/><BR/><B>System:</B> " + rackName +
    "\r\n<BR/><B>Time Last Pkt. Received:</B> " + time +
    "\r\n<BR/><B>Date Last Pkt. Received:</B> " + mDate +
    "\r\n<BR/><B>Job Number:</B> " + jobNoDispLabel.getText() +
    "\r\n<BR/><B>Device:</B> " + deviceDispLabel.getText() +
    "\r\n<BR/><B>Run Number:</B> " + runNoDispLabel.getText() +
    "\r\n<BR/><B>Current Temperature:</B> " + tempDispLabel.getText() +
    "\r\n<BR/><B>Current Module:</B> " + moduleDispLabel.getText() +
    "\r\n<BR/><B>Current Test:</B> " + testingDispLabel.getText() +
    "\r\n<BR/><BR/>This does not gurantee that the system has crashed!" +
    "\r\n</BODY></HTML>";
    os.writeBytes("Subject: " + rackName + " Packet Warning\r\n");
    os.writeBytes(message + "\r\n");
    os.writeBytes("\r\n.\r\n");
    os.writeBytes("QUIT\r\n");
    // Now send the email off and check the server reply.
    // Was an OK is reached you are complete.
    String responseline;
    //DataInputStream d = new DataInputStream(is);
    BufferedReader reader = new BufferedReader(new InputStreamReader(is));
    while((responseline = reader.readLine())!= null) { 
    if(responseline.indexOf("Ok") != -1) {
    break;
    } catch(Exception e) {
    System.out.println("Cannot send email as an error occurred.");
    e.printStackTrace();
    catch(Exception e) {
    System.out.println("Host " + SMTP_SERVER + "unknown");
    e.printStackTrace();
    } finally {
    // close all of the data streams
    try {
    if(!smtpSocket.isClosed()) {
    smtpSocket.close();
    smtpSocket = null;
    } catch(Exception e) {
    e.printStackTrace();
    try {
    if(os != null) {
    os.close();
    os = null;
    } catch(Exception e) {
    e.printStackTrace();
    try {
    if(is != null) {
    is.close();
    is = null;
    } catch(Exception e) {
    e.printStackTrace();
    i have used an example on the web to help me do this, so it may look familiar!!
    It works fine when i run the program in debug mode but doesn't work when i run the jar file, i was wondering if anyone could help me understand why? or give me a clue as to where to look as i have had the strange realisation that i rarely compile my code up to be used by other people!!
    sad but true! Also apologies if i haven't posted adequate information, this is the first time i have posted on the forum asking for help!
    Anyway help would be most appreciated and thanks in advance

    Sorry, by debug mode i mean running it using netbeans 5.5 and clicking on the "run main project" icon.
    Once i have cleaned and built the main project all of the files are put into the jar file. Once i have done that i double click on the jar icon
    is that ok? there doesn't seem to be any errors

  • Since upgrading my computer last week i cannot send emails using talktalk, i can send via ipad and phone so not the server

    Since upgrading my system i have been unable to send emails using talktalk although i can receive them  i have no problem sending them via ipad or phone. can any one help please

    Open Mail -> Preferences -> Accounts.  Select the TalkTalk account and then the 'Account Information' tab. Drop down the 'Outgoing Mail Server (SMTP)' menu and select 'Edit SMTP Server List'.  Ensure that 'Server Name' under 'Account Information' is set to "smtp.talktalk.net".  You may also need to configure settings under the 'Advanced' tab. 
    More info here:
    http://help.talktalk.co.uk/app/answers/detail/a_id/1668/~/what-are-talktalk's-em ail-settings%3F#TalkTalk

  • Cannot send emails using 5800 xpressmusic s/w vers...

    Not able to send emails using 5800 xpressmusic
    S/W Version: 11.0.008
    Custom S/w Version: 11.0.008.red.01
    Version Date: 09-12-2008
    I configured two email accounts but not able to send emails.
    I also cannot see the missed call list. If i recieve a mssed call, it shows 1 missed call. When i click on Open it says no missed calls....
    Please please help me............

    You must use mail.btinternet.com for outgoing server.  You can retain your old incoming server for your own domain, but must use the BT one for any @btinternet accounts.
    The following is my understanding based on use of the BT Yahoo mail service since September 2013.  New users may be using the new BT mail portal - I don't know how this differs.
    The BT outgoing server will block any outgoing mail sent from unauthorised accounts.  This includes those in your own domain.  The fix for this (as I understood it) is to add these accounts as sub-accounts to a primary BT mail account.  The server will then relay them.  The mail portal has an Options dialogue that lets the user manage mail accounts.  Set up another account for each [email protected]
    In Outlook, your domain accounts will need to set outgoing server to mail.btinternet.com and to authenticate using your @btinternet.com credentials.

  • HELP! HELP! Please.... Cannot send email via SMTP....

    Hi,
    Not posted here before but this really is a last ditch attempt to get my email working. I'm at my wits end with this.
    I reported a problem that I could not send mail via SMTP (with Outlook) last December (2014). I kept getting a message from the mail server stating "421 Too many messages". They guys on live chat tried for an hour to get it working, finally gave up and told me to use WebMail instead. Ok, that worked but... in January that went off completely and I found that BT had removed my mailbox from the system!
    It's now 19th March 2015. Today, (yes 3 months later) my mailbox finally came back online. At last I could catch up on all my lost messages, lost business and everything else that was important (yep all my old messages were THERE!).
    BT support have been useless, in fact, more than useless. I'm abroad working at the moment and I've had to make many international calls to the UK to bitterly complain about this. They won't call me - they will only call a UK number so all the cost, plus the lost business and everything else is at my cost. So, webmail is working. I went to set up my Ouitlook client and guess what...?  I have the SAME error message. The client is connecting but error is the same. 
    421 is a SERVER message which is telling me that the BT Mail server is not configured for enough connections. Either that or it's severely overloaded. This is BT's problem - not mine but all BT have done is fob me off with excuses for 3 months and now I'm back to square one. the support guys have no idea what this message means.
    Today I was told that if I wanted it sorted I had to pay for BT Expert help.
    What???  I don't need an "expert". I just want them to configure their server properly!
    Can ANYONE - anyone from BT please, please help me to get this sorted. I'm tearing my hair out and as you may have guessed by now I'm also very angry about this.
    I've tried making an online official complaint but that came to nothing as they told me as it was Outlook they couldn't help. Maybe it was set up wrong. It's not set up wrong - I'm a Network Engineer!!  I've set up hundreds of Outlook accounts! The SERVER error message is like a big flashing sign stating that it's a BT issue. Why will no-one listen to me???  Why will they do nothing at all?  This problem has been posted many times. Why is it not sorted?
    Anyone???
    Solved!
    Go to Solution.

    Yes of course I've contacted the Premium Mail help number. I've called them many, many times without any success at all and since I've been calling from abroad it's cost me a fortune to get nowhere.
    These forums are for the BT Community. I'm part of the community since I still have BT services. This isn't a Broadband forum. As I've indicated though, I've been with BT for over 35 years so I think that entitles me to some sort of service - even from here if possible.
    There is no issue with my account according to the BT staff. This has been checked and all is fine. The issue is that they are refusing to acknowledge that there is a problem although there clearly is one.
    However.... your statement: 
    It also possible that you are being stopped from using BTs SMTP server, because you are not actually connected to  BT Broadband. You would therfore be restriced to using webmail only.
    ... is new to me. No-one has told me that.
    One has to then beg the question: "If you can only use so-called Premium Mail via the web then why are BT not telling people that?"  No-one seems to know - even you Keith, say that "it is also possible...."
    If this actually IS the reason then I could have been told that from the beginning.
    Unfortunately, error 421 is one of the more "unspecific" codes generated by mail servers. This error can mean many things. It can show misconfiguration but it doesn't show up as a security lockdown - even though it could be. What I can't understand is why no-one actually knows. No-one can explain absolutely and that's what is really annoying here.
    No-one will take responsibility and no-one is willing to even try to help me out here - that's what is really bad.
    Keith, you've come up with something which makes sense that may well explain the issue - but the question is really: "What can I do about it?". 
    Nothing?  I just have to put up with it?  Great customer care....

  • Cannot send email using PL/SQL through Enterprise Manager 10g

    Hi
    I need to schedule a job that sends email periodically. I am using the scheduler in Oracle Enterprise Manager 10g for this. For sending the email, I am creating a PL/SQL job. The code is as follows:
    PROCEDURE send_test_message
    IS
    mailhost := 'iwblrcormsg001.sci.local';
    sender := '[email protected]';
    recipient := '[email protected]';
    mail_conn utl_smtp.connection;
    BEGIN
    mail_conn := utl_smtp.open_connection(mailhost, 25);
    utl_smtp.helo(mail_conn, mailhost);
    utl_smtp.mail(mail_conn, sender);
    utl_smtp.rcpt(mail_conn, recipient);
    utl_smtp.open_data(mail_conn);
    utl_smtp.write_data(mail_conn, 'This is a test message.' || chr(13));
    utl_smtp.write_data(mail_conn, 'This is line 2.' || chr(13));
    utl_smtp.close_data(mail_conn);
    utl_smtp.quit(mail_conn);
    END;
    I have setup the smtp server and received a test email from the EM notifying me of successful configuration. When the above job is run, the scheduler shows status as successful. If I go to the command step, it displays the following output:
    Output Log
    SQL*Plus: Release 10.1.0.2.0 - Production on Thu Feb 19 19:04:29 2009
    Copyright (c) 1982, 2004, Oracle. All rights reserved.
    SQL> SQL> SQL> SQL> Connected.
    SQL> SQL> 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 Disconnected from Personal Oracle Database 10g Release 10.1.0.2.0 - Production
    With the Partitioning, OLAP and Data Mining options
    Now, the only issue is that I do not receive any email at the address specified! I would be very grateful if someone could point out the error here.

    I would use APEX4.0 for this.
    Create an interactive report based on your data. Add a chart to that report and use the NOTIFY feature to send you the email.

  • Cannot send email using SharePoint designer 2013 workflow

    I am having a problem which I see many others have also posted about.  However, I don't find that any of their solutions fixes my problem.
    Using SharePoint 2013 on Windows 2008 R2 server.  SQL 2008 R2 on separate server.  Created a pretty simple workflow that calls for an email to be sent.  Created an Infopath form that is published to a SharePoint list.  One of the
    list fields is called "Approver" and is a people lookup field.  The workflow assigns an approver based on certain criteria in the list, and then sends an email to the assigned approver.
    During the testing phase of creating the workflow, I had the email sent to me specifically and I received the emails with no problems.  When I change the email recipient to Current Item:Approver (who is also me), I don't receive the email.  I have
    tried selecting Display Name, Email Address, and Login Name, but none work.  I also tried to send the email to the current item:creator (which was me) by selecting "User who created current item" from the select users dialog.  This also
    doesn't work.  The workflow is shown in a suspended state in the Workflow status screen.
    For informational purposes, I also included the Approver Display Name, the Approver Email Address and the Approver Login Name in the body of the email so that I could see what those fields actually returned as data.  The display name, and email address
    are correct, but the login name returned i:0#.w|domain\login (domain and login were my actual domain and login name).
    I have tried several of the fixes I found online to resolve this, but none have worked. Any help is appreciated.

    I don't see that it is possible to add CurrentItem:Creator to a list view.  The CurrentItem:CreatedBy returns my name as it should.  However, this does not help with my problem.  I don't want the email to come to me.  I want it to go
    to the CurrentItem:Approver.  This is a specific person who is assigned by the workflow based on various fields in the current item.  The approver is assigned, then an email is sent to the assigned person.
    There is a SharePoint group set up for Approvers.  This is used to assign permissions to the site where this list is created.
    Basically, I can't send an email to any recipient where I am using the current item lookup fields to populate the To: field.  I can only send email if I specifically select a person by name.

  • Unable to send emails using SMTP Plug In

    Hi all.
    I am trying to configure SAPConnect so that I can send emails from SAP to
    external domains. I have done all settings in SCOT. But our Outgoing SMTP Server needs authentication. So in my JOB TRACE I am getting error '530 Authentication Required'.
    In transaction RZ10 where I have maintained Instance Profile IDS_DVEBMGS00_IDES-SERVER
    I have set Parameter: icm/server_port_0 with value PROT=SMTP, PORT=25. Is there any way I can pass "Authentication Required" as a value here or in transaction SCOT.
    Anyone who has a solution plz help me.
    Thanks and regards.
    Vipin Varghese.

    Thanks all for the help.
    The server that I am supposed to configure that is the email server that you are talking about right?
    I m fairly new into WF and these Basis steps are new for me.
    There are 4 profiles created in RZ10 - 2 start profiles and 2 instance profiles.
    I am making changes in an instance profile. But after the changes when I try to activate, its showing some warnings and errors. But somehow it gets activated and an instance profile with version 2 is actively saved.
    Also when I open MS OUTLOOK and go to the account settings, for Outgoing server ( SMTP ) , Authentication Required checkbox has been marked.
    Now is any one of these the problem?
    Regards.
    Vipin Varghese.

  • Cannot send email using mac mail and yahoo att

    I recently was hacked and changed my att yahoo password and security questions. I got a confirmation email about this but not about changing the password. I can receive mail, but not send any. All my settings in preferences seem to be correct. The TLS certificate is not check however, and I'm wondering if that has something to do with it. The port number has not been changed, nor the outgoing service address: which is:  smtp.att.yahoo.com: (followed by my email account name). I've had this email address for years and want to keep using it. apparently Yahoo has been having allot of problems over the last few days and I've found it hard to access their trouble shooting sites and log in page. Is there something I can do on my end to fix this? Thanks.

    Could be many things, we should start with this...
    "Try Disk Utility
    1. Insert the Mac OS X Install disc, then restart the computer while holding the C key.
    2. When your computer finishes starting up from the disc, choose Disk Utility from the Installer menu at top of the screen. (In Mac OS X 10.4 or later, you must select your language first.)
    *Important: Do not click Continue in the first screen of the Installer. If you do, you must restart from the disc again to access Disk Utility.*
    3. Click the First Aid tab.
    4. Select your Mac OS X volume.
    5. Click Repair Disk, (not Repair Permissions). Disk Utility checks and repairs the disk."
    http://docs.info.apple.com/article.html?artnum=106214
    Then try a Safe Boot, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, reboot when it completes.
    (Safe boot may stay on the gray radian for a long time, let it go, it's trying to repair the Hard Drive.)
    If perchance you can't find your install Disc, at least try it from the Safe Boot part onward.

  • Cannot send email using gmail account

    Within the last month or so, sending mail from my gmail id in Thunderbird fails. Receiving works fine. I'm running windows 7 on a desktop.
    Status says - 'connected to smtp.gmail.com...'
    Error message is - 'Sending of message failed. The message could not be sent because the connection to SMTP server smtp.gmail.com timed out. Try again or contact your network administrator.'
    Server settings are:
    Server type - pop mail server
    Server name - smtp.gmail.com
    port - 995
    connection security - ssl/tls
    authentication method - normal password
    outgoing server settings - for my id - I have smtp.gmail.com

    Not sure why you have port 995. That is the Inbound port for POP email server. Last time I checked the SMTP ports are 587 or 465.

  • I cannot send emails using "Compose" since verizon changed the email format

    Ever since verizon changed to the new view format, when I click "COMPOSE" it won't allow me to enter the message part of the box. I can enter the "TO" and the "SUBJECT" of the email but cannot enter the "MESSAGE"???
    When I call for a tech, I notice that the above box "B I U etc etc appears but it does not appear in my format.
    {edited for privacy}

    I have used the new format successfully (yesterday) under IE 8, Firefox 3.6.13, and Google Chrome. So I cannot reproduce your problem. But a few thoughts:
    1) It is possible that some add-on that you are using with your browser might be causing the issue. Are you using any add-ons? If so, you might try starting the browser without any add-ons to see if the problem persists.
    2) Do you have javascript disabled in your browser?
    3) Have you tried a different browser? Might be worth a try.
    Beyond the above I really can't imagine what could be causing the problem. As prisaz asked, what browser are you using?
    Justin
    Verizon FiOS TV, Internet, and phone
    QIP6416-P1, IMG 1.8, Build 02.54
    Keller, TX 76248

Maybe you are looking for

  • Read in XML file and spit out specific element

    Hi all i wonder if someone could give me a hand. I've got some code (below) which reads in an xml file and spits out the contents of the file. Thats fine and dandy, however what i want to be able to do is specify which element to spit out, which i'm

  • Can't  access desktop

    Hello! I can't remember what I did, but suddenly, when restarting my iMac the whole desktop (along with hard disk icon) became empty. I can access all folders that were (are) there thru Finder, but can't see them on desktop. I also can't copy nothing

  • Issue in inbound Idoc

    Hi Experts, I have one issue inbound idoc, actually we have 4 zfields, durring inbound process this 4 fields getting the records as well as its showing the correct values in we05. Even the idoc also getting success. But in the sales order its not sho

  • Iweb podcast "subscribe" issue

    I've checked the forums and can't find this issue addressed, sorry if I missed it. When I go to subscribe to a podcast after uploading the website, I'm taken to itunes, then given an error message that says "the url... cannot be found on the server."

  • Finder Airport Flaw & Permissions

    Files that are locked and permissions to only read changed, can be edited if the files is sent to another machine via finder's airport. Also I can then out of some wierd reason edi a file, to which I only have "read" permissions. Anyone know why?