STRANGE PROBLEM with "Create New Mail Account.scpt" when creating POP acct.

I am using "Create New Mail Account.scpt" to create a POP account. It creates the account successfully. It fetches the mails successfully. Now the problem begins. After fetching all the mails once if u click "Get Mail" in mac mail, it fetches all the emails again and has now 1 original and 1 copy of the email set which is on the server. I just need 1 copy of the mail set not multiple. Please give me a solution or direct me to a help.
Thanks
SCRIPT
global theUsername
global thePassword
set success to 1
set theResult to true
if theResult is not equal to false
#set theAccountName to getAccountName()
#set theUsername to getUsername()
#set thePassword to getPassword()
#set theEmailAddresses to getEmailAddress()
#set theFullName to getFullName()
-- POP Account
if accountTypeString is equal to "POP" or accountTypeString is equal to "IMAP" then
set theHostname to "THE HOST NAME"
-- POP specific options
if accountTypeString is equal to "POP" then
set deletionPolicy to my getDeletionPolicy()
if deletionPolicy is not equal to false then
set deletionPolicy to item 1 of deletionPolicy
set theNewAccount to my createAccount(accountTypeString, theAccountName, theUsername, theHostname, thePassword, theEmailAddresses, theFullName)
if theNewAccount is not equal to false then
setDeletionPolicy(theNewAccount, deletionPolicy)
getAndSetAuthenticationScheme(accountTypeString, theNewAccount)
getAndSetSMTPServer(theNewAccount)
else
set success to 0
end if
end if
-- IMAP specific options
else if accountTypeString is equal to "IMAP" then
set theNewAccount to my createAccount(accountTypeString, theAccountName, theUsername, theHostname, thePassword, theEmailAddresses, theFullName)
if theNewAccount is not equal to false then
getAndSetCachingSettings(theNewAccount)
getAndSetAuthenticationScheme(accountTypeString, theNewAccount)
getAndSetSMTPServer(theNewAccount)
else
set success to 0
end if
end if
end if
if success is equal to 1 then
display dialog "Account created!"
else
display dialog "Account creation failed!"
end if
end if
-- Convenience handler for creating accounts
on createAccount(theAccountType, theAccountName, theUsername, theHostname, thePassword, theEmailAddresses, theFullName)
tell application "Mail"
try
if theAccountType is equal to ".Mac" then
set theNewAccount to make new Mac account with properties {name:theAccountName, user name:theUsername, server name:theHostname, password:thePassword, full name:theFullName, email addresses:{theEmailAddresses}}
else if theAccountType is equal to "IMAP" then
set theNewAccount to make new imap account with properties {name:theAccountName, user name:theUsername, server name:theHostname, password:thePassword, uses ssl:true, full name:theFullName, email addresses:{theEmailAddresses}}
else if theAccountType is equal to "POP" then
set theNewAccount to make new pop account with properties {name:theAccountName, user name:theUsername, server name:theHostname, include when getting new mail:true, password:thePassword, uses ssl:true, full name:theFullName, email addresses:{theEmailAddresses}}
end if
on error
set theNewAccount to false
end try
end tell
return theNewAccount
end createAccount
-- Ask the user what they would like to name the account
on getAccountName()
repeat
set theResult to display dialog "What would you like this account to be named?" default answer "Example: My Home Account"
set theAccountName to text returned of theResult
if theAccountName does not start with "Example:" then
exit repeat
end if
end repeat
return theAccountName
end getAccountName
-- Ask the user for the user name for their email account
on getUsername()
repeat
set theResult to display dialog "What is your email user name?" default answer "Example: janedoe"
set theUsername to text returned of the theResult
if theUsername does not start with "Example:" then
exit repeat
end if
end repeat
return theUsername
end getUsername
-- Ask the user for the password for their email account
on getPassword()
set theResult to display dialog "What is the password for this account?" default answer ""
set thePassword to text returned of theResult
return thePassword
end getPassword
-- Ask the user for the email addresses for their email account
on getEmailAddress()
repeat
set theResult to display dialog "What email address would you like to use for this account?" default answer "Example: [email protected]"
set theEmailAddress to text returned of theResult
if theEmailAddress does not start with "Example:" then
exit repeat
end if
end repeat
return theEmailAddress
end getEmailAddress
-- Ask the user for the full name for their email account
on getFullName()
repeat
set theResult to display dialog "What is the full name for this account?" default answer "Example: Steve Smith"
set theFullName to text returned of theResult
if (theFullName does not start with "Example:") then
exit repeat
end if
end repeat
return theFullName
end getFullName
-- Convenience handler for asking the user what settings they would
-- like to have for their special mailboxes. This handler also sets these
-- values in Mail.
on getAndSetSpecialMailboxes(theAccount)
-- Sent messages default to storing locally
set theResult to display dialog "Would you like to store Sent Messages on the IMAP server?" buttons {"Yes", "No"} default button 2
log theAccount
tell application "Mail"
tell theAccount
if button returned of theResult is equal to "Yes" then
set store sent messages on server to true
else if button returned of theResult is equal to "No" then
set store sent messages on server to false
end if
end tell
end tell
-- Drafts default to storing locally
set theResult to display dialog "Would you like to store Drafts on the IMAP server?" buttons {"Yes", "No"} default button 2
tell application "Mail"
tell theAccount
if button returned of theResult is equal to "Yes" then
set store drafts on server to true
else if button returned of theResult is equal to "No" then
set store drafts on server to false
end if
end tell
end tell
-- Trash defaults to storing on the IMAP server
set theResult to display dialog "Would you like to store Deleted Messages on the IMAP server?" buttons {"Yes", "No"} default button 1
tell application "Mail"
tell theAccount
if button returned of theResult is equal to "Yes" then
set store deleted messages on server to true
else if button returned of theResult is equal to "No" then
set store deleted messages on server to false
end if
end tell
end tell
end getAndSetSpecialMailboxes
-- Convenience handler for asking the user what IMAP
-- caching setting they would like to use and configuring
-- it in Mail.
on getAndSetCachingSettings(theAccount)
set theResult to choose from list {"Cache everything", "Cache everything but attachments", "Cache when read", "Don't cache"} ¬
with prompt "Choose a message caching setting for this account:" default items {"Cache everything"} without multiple selections allowed
if theResult is not equal to false then
tell application "Mail"
tell theAccount
if (item 1 of theResult is equal to "Cache everything") then
set message caching to all messages and their attachments
else if (item 1 of theResult is equal to "Cache everything but attachments") then
set message caching to all messages but omit attachments
else if (item 1 of theResult is equal to "Cache when read") then
set message caching to only messages I have read
else if (item 1 of theResult is equal to "Don't cache") then
set message caching to do not keep copies of any messages
end if
end tell
end tell
end if
end getAndSetCachingSettings
-- Convenience handler for asking the user whether they want to use
-- an already defined SMTP server (if any) or whether they want to
-- define a new one.
on getAndSetSMTPServer(theAccount)
tell application "Mail" to set everySMTPServer to every smtp server
if ((count of everySMTPServer) > 0) then
set listOfSMTPServers to {}
repeat with eachServer in everySMTPServer
try
set listOfSMTPServers to listOfSMTPServers & name of eachServer
end try
end repeat
createNewSMTPServer(theAccount)
else
createNewSMTPServer(theAccount)
end if
end getAndSetSMTPServer
-- Handler for creating a new SMTP server, if the user has none set up
-- already or if they choose not to use one of their existing servers.
on createNewSMTPServer(theAccount)
set theServerName to "THE SERVER NAME"
tell application "Mail"
set theSMTPServer to make new smtp server with properties {server name:theServerName, port:25, uses ssl:true}
set smtp server of theAccount to theSMTPServer
end tell
getAndSetAuthenticationScheme("SMTP", theSMTPServer)
end createNewSMTPServer
-- Handler for asking the user what authentication scheme their server supports.
-- The options are different for POP, IMAP, and SMTP. Unless you are told otherwise,
-- it's best to leave these at their default settings.
on getAndSetAuthenticationScheme(accountType, theAccount)
if accountType is equal to "POP" then
set theChoices to {"Password", "Kerberos 4", "Kerberos 5", "KPOP", "MD5"}
set theDefault to {"Password"}
else if accountType is equal to "IMAP" then
set theChoices to {"Password", "Kerberos 4", "Kerberos 5", "MD5"}
set theDefault to {"Password"}
else if accountType is equal to "SMTP" then
set theChoices to {"None", "Password", "Kerberos 4", "Kerberos 5", "MD5"}
set theDefault to {"Password"}
end if
set theResult to choose from list theChoices ¬
with prompt ¬
"Choose an authentication scheme for this " & accountType & " server. Most servers support 'Password' authentication." default items theDefault without multiple selections allowed
if theResult is not equal to false then
tell application "Mail"
set theScheme to item 1 of theResult
tell theAccount
if theScheme is equal to "Password" then
set authentication to password
else if theScheme is equal to "Kerberos 4" then
set authentication to «constant exutaxk4»
else if theScheme is equal to "Kerberos 5" then
set authentication to kerberos 5
else if theScheme is equal to "MD5" then
set authentication to md5
else if theScheme is equal to "None" then
set authentication to none
else if theScheme is equal to "KPOP" then
set authentication to «constant exutakpo»
end if
end tell
end tell
if accountType is equal to "SMTP" then
set theSMTPLogin to theUsername
set theSMTPPassword to thePassword
tell application "Mail"
tell theAccount
set user name to theSMTPLogin
set password to theSMTPPassword
set uses ssl to true
set port to 25
end tell
end tell
end if
end if
end getAndSetAuthenticationScheme
-- Handler for asking the user what POP deletion policy
-- they would like to use for their account.
on getDeletionPolicy()
set theResult to choose from list {"Immediately after being downloaded", "After a specified number of days", ¬
"When I remove them from the inbox", "Always leave them on the server"} ¬
with prompt ¬
"Choose a POP message deletion option:" default items {"Always leave them on the server"} without multiple selections allowed
return theResult
end getDeletionPolicy
-- Handler for setting the deletion policy established in getDeletionPolicy()
on setDeletionPolicy(theAccount, thePolicy)
tell application "Mail"
tell theAccount
if thePolicy is equal to "Immediately after being downloaded" then
set delete mail on server to true
set delayed message deletion interval to 0
else if thePolicy is equal to "After a specified number of days" then
set numberOfDays to my getDeletionInterval()
set delete mail on server to true
set delayed message deletion interval to numberOfDays
else if thePolicy is equal to "When I remove them from the inbox" then
set delete mail on server to true
set delete messages when moved from inbox to true
else if thePolicy is equal to "Always leave them on the server" then
set delete mail on server to false
end if
end tell
end tell
end setDeletionPolicy
-- Handler for asking the user what deletion interval they
-- would like to use, if they are setting up a POP account
on getDeletionInterval()
set theResult to display dialog "After how many days would you like POP messages to be deleted from the server?" default answer "30"
set numberOfDays to text returned of theResult as integer
return numberOfDays
end getDeletionInterval

Hi amiaba, and a warm welcome to the forums!
I can't quite tell what it's doing, but open Keychain Access in Applications>Utilities, click on your Keychain on the left, put .mac in the search bar, once you find it, double click on it and click show password.
If you have no mail in there try this with Mail quit.
Drag this file to the Desktop...
/Users/YourUserName/Library/Preferences/com.apple.mail.plist
Start Mail & see if it steps you through it.
Not sure on the .uk thing, but is Date & Time>Time Zone set to the UK?

Similar Messages

  • Is something wrong with the new software update. My battery dies within 4 hours. There are also problems with my e-mail accounts. Can someone help me?

    Is something wrong with the new software update. My battery dies within 4 hours. There are also problems with my e-mail accounts. Can someone help me?

    Have you attempted an iTunes restore and setting up as a new device? Sometimes battery life issues can be caused by corrupted iOS software.
    - Greg

  • HT2500 Hi, I have a problem with my mac mail account. Its linked with my website and i've just transferred my domain and host plan to 123-reg.co.uk Now for some reason emails disappear from my inbox! Emails come in and then my inbox is empty.. Help!

    Hi, I have a problem with my mac mail account. Its linked with my website and i've just transferred my domain and host plan to 123-reg.co.uk Now for some reason emails disappear from my inbox! Emails come in and then my inbox is empty.. Help!

    Lord K.  Thank you. Yes I am within the 90 time period, however I travel Intertionally and I can not receive not make a call to Apple. I was just at the Genius Bar in Chicago and they said, don't worry about it.  It just floats out there, however, I can not recover my messages on a flash drive. I need to go back to my old computer which I don't have with me.  My messages were in folders for a lawsuit.  It is going to take an incredible amount of work for me to, you have no Idea.  We are talking thousands of pages!  I the defendent will have them during discovery so I am not so worried.  However, I can not bring them to him on a Flashdrive when I meet with him without an extraordinary amount of presssure on my part.  THis is not just some little email issue. This is suing EXPEDIA and Tripadviosr.com

  • Problems with multiple e-mail accounts on Droid 2 & also can't put phone into Silent mode

    I just received my Droid 2 and having a problems with having multiple e-mail accounts.
    My original droid worked fine with all of this.
    I have 2 different personal e-mail accounts setup.
    When I click e-mail, it just defaults to the default e-mail address and I have no way of switching accounts. I have to change the default e-mail account in order to view the other account.
    Along with having a shortcut on the home page to each e-mail account, it always just goes to the default one and no way of adding a shortcut to both.
    When I did this on the original droid, i could choose which e-mail account I wanted a shortcut for and could obviously have both on the home screen.
    I also have found no way to NAME the accounts, ex. Comcast & Work.
    That way I could distinguish the difference between the 2 on my home screen even if I could get a shortcut to both.
    not sure how this could be overlooked but I sure dont think there is a way to make this happen.
    Also, what is with 2.2 System and not allowing you to put it in silent mode?
    I updated my original Droid to 2.2 and could no longer make it silent with the volume button on side or going into the sound settings and changing it to silent, it would always stay on vibrate.
    And now it does the same thing with Droid 2. I cant make it silent at all.
    Any ideas on either issue

    becker800 wrote:
    ok I got the silent problem fixed.
    The update changed vibrate to be always, even when on Silent mode.
    The e-mail problem however is stll an issue and I realy hope they release an update to fix this.
    I'm sure I'm not the only one with 2 e-mail accounts on their droid.
    I never had an original Droid, so I can;t compare to what was on that.  For me, I am using the "Messaging" app - it seems to be set up for multiple e-mail accounts better than the email app.  Messaging is the one recommended by the manufacturer - give that a try.

  • Problem setting up new mail account

    I think when I got my macbook about 3 years ago I must have tried to set up an account for the 'mail' application. I no-longer remember wither my user-name or my password. When I open the app it comes up with a window explaining that I will be given guide-lines on how to create a new account, however, no guidelines are given and it just wants me to enter my use name and password, which it then does not recognise (it seems to therefore assume that I already have an account rather than helps me to set one up). The ending of the user-name is already written in (and is unalterable, as it's outide the bit I type in) and is "@mac.com" even though my Apple ID ends in "@mac.co.uk" (as I am from the UK) - should any of the details for my mail account be the same as my Apple ID?
    Would be grateful for some help!

    Hi amiaba, and a warm welcome to the forums!
    I can't quite tell what it's doing, but open Keychain Access in Applications>Utilities, click on your Keychain on the left, put .mac in the search bar, once you find it, double click on it and click show password.
    If you have no mail in there try this with Mail quit.
    Drag this file to the Desktop...
    /Users/YourUserName/Library/Preferences/com.apple.mail.plist
    Start Mail & see if it steps you through it.
    Not sure on the .uk thing, but is Date & Time>Time Zone set to the UK?

  • How to restore all inbox data after obliged to create new mail account

    After my Thunderbird account mysteriously disappeared I had to re-open another mail account. After difficulty I restored address book. But only about 30 percent of email inbox restored. How can I restore the rest, many of which were important to me.

    '''Background info to help you understand your mail account:'''
    As you saw in the Profile folder mail accounts, 'folders' you see in the Thunderbird FolderPane are actually Files; mbox files.
    Emails are downloaded to your Inbox and stored one after the other in the order they were downloaded. So, the emails are not stored as individual files, they are written into a text file which can get bigger and bigger if you do not manage the Inbox.
    Any emails you delete, from your point of view they disappear from Inbox and reappear in 'Deleted' folder (Also called Trash).
    In reality, those deleted emails are 'marked as deleted' and are still in the Inbox, but hidden. This means that if you had accidentally deleted an email, it would be easy to quickly get it back.
    However, the deleted emails are still taking up space, so to clean up the file and remove those 'marked as deleted' emails, you have to 'compact' the folder. If you do not compact your folders then you increase the possibilty of getting a corrupted file and losing emails.
    Using folders to organise emails into groups keeps the file size smaller and makes it easier to locate emails. It is also less risky. Smaller files also use less memory to open.
    '''How to create Folders:'''
    Select the mail account name in the Folder Pane. If you want to create them in 'Local Folders' account, select 'Local Folders'.
    * 'File' > 'New' > 'Folder'.
    * Give folder a name eg: Bills or Family or Friends etc
    * click on 'Create Folder' button.
    you can create as many folders as you need.
    '''How to move emails from one folder to another:'''
    There are a couple of ways to this, so you could try out the methods and choose the one you find most comfortable.
    Suggest you move one email first and then try to move a group.
    '''1. Using right click options.'''
    * Right click on highlighted/selected email in list
    * select: 'Move to' > mail account / Local Folder > select name of folder
    '''2. Using toolbar: '''
    * Select email in list so it is highlighted
    * 'Message' > 'Move to' > mail account > select: Folder'
    '''3. Drag and Drop method'''
    * Left click and keep down on hilighted email in list to grab
    * Move the mouse pointer to hover over the Folder you want; this is dragging the email,
    * Release the mouse to drop the email into that folder.
    '''How to highlight several emails:'''
    All the above methods work if you select one email or a highlighted group.
    '''To select a batch of email eg: 10 adjacent emails'''
    * click on first email
    * Press 'Shift' key and click on eg:10th email - all emails in between become highlighted.
    '''To select various emails to put them as a group.'''
    * Hold down 'Ctrl' key and use mouse to select various emails.
    '''To select all emails in folder:'''
    * click on first email in list
    * Hold down 'Ctrl' key and press 'A' - All emails will be highlighted.

  • Problem with some outgoing mail accounts

    I have several pop accounts in Mail. On my home iMac, they use my ISP for outgoing. For example, one account is arizona.edu for incoming; it uses smtp.comcast.net for outgoing. This has worked perfectly for years. Suddenly last week, the outgoing mail stopped working.
    The dialog box says the server has rejected the sender address. The only way I can send the message is to edit it, changing the "from" address to my mac.com address.
    There's nothing new on my system. No software changes. When this happened, I tried re-entering my account info in Preferences, but no joy. Any ideas?
    Thanks!

    Hi,
    Thanks for chipping in.
    This is what I do.
    1.Enable IMAP in Gamil settings
    2. In iphone setup the mail by using Gmail option.
    3. I enter the user name, pswd et
    4. I save and it verifies the account
    Now if I go to home screen and checks the mail account details again, the pswd field is blank again.
    I have set up my yahoo account and it works perfectly well.
    Hope the above info helps foryou to understand the issue and help me out.
    Thanks,
    Alex

  • Problems with my Yahoo-mail account.

    I cannot send mails anymore with the Mac Mail, although I still receive mails! If I log in into Yahoo-homepage directly via Safari, everything's working fine. Can anybody help me, please?

    What does Mail/Window/Connection Doctor Show? If the server is red, select it and look at the Show Details box.
    Troubleshooting sending and receiving email messages
    Troubleshooting sending email messages

  • Problem with premiere elements 3.0 (titles when creating DVD)

    I am using version 3.0 and when you go to create DVD there should be the option to insert titles or menu page at the start of your DVD, well that has disappeared from my programme.  We had problems with the pc so had to reinstall alot of the programmes on it but the titles never came back when we re-installed the programme.  I have tried everything i can think of but there are still no titles or menus available.  Any suggestions would be very welcome.

    Give this a try and see if it helps.
    http://kb2.adobe.com/cps/329/329802.html
    Also, if you are installing on Vista, be sure to install the 3.02 update also.

  • Problem with an e-mail account

    Good afternoon,
    I need help.
    I bought N78 few days ago.
    But I cannot receive my e-mails there. The situatiion is following:
    When I put email address in the phone and I complete the settings, I try to connect. Unfortunately I cannot connect because above mentioned e-mail address is cut and it appears without "com" at the end.
    I tried another address - [email protected] The problem is the same but in this case only "m" is cut.
    I tried with [email protected] and it works without problem.
    Can somebody advise me whether there are any restictions about the number of the letters of the e-mail address?
    Thank you in advance for your help.
    Best Regards from sunny Bulgaria
    Dimiter
    Message Edited by celandine on 21-May-2009 07:59 PM

    What happens when you try?

  • OSX Mavericks problems with iMail new mail sound and Time Capsule back-up symbol

    Since I updated to Mavericks, the New Messages Sound in iMail does not work; there is no sound. As well, the time capsule back-up clock-face symbol in the top menu no longer moves when the computer is being backed-up. Any ideas?

    JLS99 wrote:
    I recently purchased a Seagate 750GB Hard Drive, installed the new hard drive in my MBP and completed the steps to restore from my TC.
    Exactly what did you do?   Did you do a full system restore, after starting from your Recovery HD, per #14 in Time Machine - Frequently Asked Questions?
    When it was complete, I re-started my computer and I would see the Apple icon in the middle of my screen for about 10 seconds then the screen would go blank then several lines of messages were visible with the message the computer would not boot.
    This one?
    If so, that's a kernel panic.  All you need to do is install a fresh version of OSX.  See #E8 in Time Machine - Troubleshooting.

  • Strange problem with new iBook G3 battery

    Hi everyone!
    I'm facing a strange problem with the new battery I've bought for my 12" iBook G3 800MHz (full specs PowerPC G3 800MHz CPU, 640MB SDRAM 133MHz, DVD-ROM, 20GB HDD, running OSX 10.4.11)..So I've got this laptop two months ago from a friend who wasn't using it anymore, and the original battery was almost dead: 141mAh of maximum charge was giving me about 6 minutes of work. I've recived the new battery yesterday (it was completely charge-less: the indicator lights weren't working), but it has this curious problem: when the iBook is off, it won't charge. I gave it a full charge with the laptop on, up to 100% (4414mAh), and was working fine. But this morning it started going crazy: osx gets bad charge readings, since the percentage jumps randomly from the correct value (and there stays about 2-3 minutes) to 3-4% or 100%. The battery itself is working: only readings are really bad. And there's still the odd "I'm not charging while iBook's off" problem..I'm currently trying to calibrate the battery: could that be the problem? I've already made PRAM, NVRAM and PMU resets..ideas? Thanks

    Before sending it back try a PMU and PRAM reset.
    http://support.apple.com/kb/ht1379
    http://support.apple.com/kb/HT1431

  • Can not add new mail account following 10.6.2 upgrade

    Mail crashes when trying to add a new IMAP account.
    Process: Mail [394]
    Path: /Applications/Mail.app/Contents/MacOS/Mail
    Identifier: com.apple.mail
    Version: 4.2 (1077)
    Build Info: Mail-10770000~4
    Code Type: X86-64 (Native)
    Parent Process: launchd [97]
    Date/Time: 2009-11-10 23:27:07.583 -0500
    OS Version: Mac OS X 10.6.2 (10C540)
    Report Version: 6
    Interval Since Last Report: 39375 sec
    Crashes Since Last Report: 3
    Per-App Interval Since Last Report: 32337 sec
    Per-App Crashes Since Last Report: 3
    Anonymous UUID: 4BB72F1C-99A3-4CEC-B218-FF73B8FBE7D3
    Exception Type: EXCBADINSTRUCTION (SIGILL)
    Exception Codes: 0x0000000000000001, 0x0000000000000000
    Crashed Thread: 0 Dispatch queue: com.apple.main-thread
    Application Specific Information:
    -[AccountSetupValidator _validate]
    objc[394]: alt handlers in objc runtime are buggy!

    I hate to add a third entry but this one will end the speculation about this problem.
    Apple mail is not designed to create a new mail account! WIndows mail, all forms, is designed to create new mail accounts. If you are new to mac, and you try to create a new mail account and the account you try to create already exists because it belongs to some else, the a return code for an error is returned from the mail provider. Apple mail unfortunately trys to handle
    the error but does not bother range checking the return code for validity. This results in what I said above and the mail crashes. Nothing that happens should ever cause a crash! There are a number of software errors in Apple mail that need attention. To fix this problem, just go to your email provider and create the account. Then add it in apple mail.
    This will work without error.

  • Can't create new email account.

    I can't create new emails account because when I go to Setting and click in Mail,Contacts ,calender, it goes back to home, intead of open the options. Any advice? Thanks
    Julio

    Double tab the home button and when the application button shows up hold the settings icon until you see a red dot in the corner and hit that.
    If that dosent work then try restarting the device. Hold the lock button (top right of iPad) until slide to power off appears then hit the same button to get it back on.
    To actually make an email account you have to go to the providers web page, you can't create one in settings

  • Strange Problems with XDK v10 Beta Version

    Hello together,
    I encounter two strange problems with the new 10.1.0.0.0 Beta release of XDK. I already posted them in the Beta Release Testing Forum, but got no replies, so I decided to start another try here. Maybe anyone can help me...
    I upgraded a fine-working XSQL web application from XDK 9.2.0.4 to the new 10.1.0.0.0 Beta release of XDK. Since then, two bugs came up, which are reproducible by will:
    1.)
    When processing XSQL insert-requests, the error given below is thrown. I already found an entry in the bug database that says that exactly this error should have been fixed since 9.2.0.3 (see http://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=230695.1), but no it seems to be there again.
    This is the stack trace:
    XSQL-017: Unexpected Error Occurred
    java.lang.NoClassDefFoundError: oracle/sql/OPAQUE
    at oracle.xml.xsql.actions.XSQLInsertRequestHandler.handleAction(XSQLInsertRequestHandler.java:118)
    at oracle.xml.xsql.XSQLDocHandler.getDocument(XSQLDocHandler.java:158)
    at oracle.xml.xsql.XSQLPageProcessor.process(XSQLPageProcessor.java:171)
    at oracle.xml.xsql.XSQLServlet.doGet(XSQLServlet.java:61)
    at oracle.xml.xsql.XSQLServlet.doPost(XSQLServlet.java:82)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1058)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:401)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:306)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:5412)
    at weblogic.security.service.SecurityServiceManager.runAs(SecurityServiceManager.java:744)
    at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3086)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2544)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:153)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:134)
    2.)
    When I deploy and start the application now, I always get the following error only once(!) after deployment when I call the application for the first time:
    XSQL-017: Unexpected Error Occurred
    java.lang.NullPointerException
    at weblogic.jdbc.oci.Statement.executeQuery(Statement.java:865)
    at oracle.xml.xsql.actions.XSQLQueryHandler.handleAction(XSQLQueryHandler.java:161)
    at oracle.xml.xsql.XSQLDocHandler.getDocument(XSQLDocHandler.java:158)
    at oracle.xml.xsql.XSQLPageProcessor.process(XSQLPageProcessor.java:171)
    at oracle.xml.xsql.XSQLServlet.doGet(XSQLServlet.java:61)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1058)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:401)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:306)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:5412)
    at weblogic.security.service.SecurityServiceManager.runAs(SecurityServiceManager.java:744)
    at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3086)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2544)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:153)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:134)
    When I reload the same page, it works. However, this is not really a good state for productive use.
    Any ideas? After days of research, I'd be very glad for any help.
    Thanks alot,
    Eckhard

    Once again me:
    I guess I should partially revoke for the second topic: The error described above under 2.) seems to be rather a Weblogic versioning problem than a XDK bug, as it only occurs when deploying the application to WebLogic 7.0 (instead of 6.1, which was used before). Maybe I should search the BEA docs for an answer.
    However, the first bug is still a problem to me...

Maybe you are looking for

  • Error message for export to PDF in CS3 after os upgrade

    I upgraded my Mac o/s to 10.6.8 -Snow Leopard - Now CS3 gives me an error when I try to export a file to PDF that says"PDF library failed to initialize" Adobe says that CS3 is compatible with snow leopard, but they don't troubleshoot CS3 anymore. Any

  • IE7 not showing SWF?

    We had some Captivate 2 SWF files on an ASP page that were working fine, however needed to be updated. We have since had Captivate 3 installed and we reworked them and republished them and now the new files are not working on some of the IE7 browsers

  • Consolidator Exception: ORA-02291

    We have Olite 10g R2 on a Windows 2003 5.2 Operating system. We packaged an application and published it to the Mobile Server. When we attempt to assign access to a user or a group we are getting a VIRTUAL PATH IS NULL error. Even though we get this

  • CIN Example with Values..?

    Hi all Can anybody explain me about he CIN process from end to end for below materials Say for example, Raw material - 1000 (Excisable) Purchased for RS1000 , and Excise duty as follows, ED-14% ( Rs 140) Ecess -2% (Rs 28) Secess-1%(Rs 14). Total Exci

  • How to refer other Region's Application Module

    Hi, Two regions are there (Different Page) RN1 & RN2. RN1 AM= XXAM1 RN2 AM=XXAM2 I want to check sum of the attribute in VO which is in XXAM1(RN1) from the RN2's controller. How to do this? Thanks in advance, SAN