Protect mail with password?

Hello Apple Community,
is there a way to restrict some apps / secure them with a password?
With Settings/General/Restrictions you can't protect mail (only safari, explicit itunes content, youtube, itunes and sw-install)
What i want is this: a friend should be able to use safari, music, maps, etc but should not be able to read my mail.
thanks in advance,
ralf

No, it's not possible.
If your friend can't be trusted not to read your private mail either don't lend him the iPod, monitor what he's doing on it, or remove your email accounts.

Similar Messages

  • Buyer Account, Welcome mail with password & LDAP related query

    Hi All
    We are facing an issue with the LDAP configuration while creating Buy  side users, please see below
    If anyone of you could help, please provide your contact details or a solution to overcome this
    Background
    We have installed SAP E-Sourcing 5.1 On-premise.
    We are currently doing the post installation configuration
    -          Imported the Out of the Box enterprise Deployment Workbook (We have not modified the contents of the workbook)
    -          We have configured an SMTP mail host to send and receive all mails from the application
    Query
    Based on the enterprise Deployment Workbook, the system has created the following Directory configuration settings pointing to different LDAP system
    DISPLAY_NAME   EXTERNAL_ID
    QA SunOne 5.2 u2013 Buyside  dir.qa.sun.bs
    QA SunOne 5.2 u2013 Sellside  dir.qa.sun.ss
    QA ActiveDirectory 2003 - Buyside dir.qa.ms.bs
    QA ActiveDirectory 2003 u2013 Sellside  dir.qa.ms.ss
    QA Oracle 9.0.2 u2013 Buyside  dir.qa.ora.bs
    QA Oracle 9.0.2 u2013 Sellside  dir.qa.ora.ss
    When we are creating the Buyside users (If we use the Check Box u2013 Create Directory account), we are getting a communication error
    If we uncheck it, it creates the account but the system does not generate the welcome mail. We understand that the welcome mail has the system generated password to log-onto the application as the Buyer.
    We are also not able to create the local users, as the password.properties template isnu2019t available in the downloaded software, we donu2019t know the format thatu2019s expected by the system.
    Please let us know, if there is an alternate way to get the password even without using LDAP or Local directories.
    Incase LDAP or creation of local directory is the key, then please let us know whatu2019s happening incorrectly in our case.
    This has become a show stopper for us going any forward.
    Request your help ASAP
    Regards
    Tridip

    Hi All
    I had the same problem when I tried doing the email Set-up
    I finally realised that you need to do the configuration steps for SMTP using the enterprise user and the system user. If you have done this setting as only the system user the mails will be in Awaiting retry.
    Do this and the mails will start flowing, incase your SMTP mail server is working fine
    Please do the following settings logged in as System User and Enterprise User
    System Properties->searrch for messaging
    Set           -                Property                       -               Value                -                   Context
    messaging messaging.smtp.mailhost                replace the default with your value  System Context
    messaging messaging.smtp.port                       25                                               System Context
    Also please let me know what is the status of the messages in your Queued Messages
    This should work
    Do let me know, if it does
    Regards
    Tridip
    Edited by: Tridip Chakraborthy on May 27, 2009 11:57 AM
    Edited by: Tridip Chakraborthy on May 27, 2009 12:02 PM
    Edited by: Tridip Chakraborthy on May 27, 2009 12:02 PM

  • C# Protect file with password

    Hello,
    I am creating a notepad where you can protect a file with an password. Try to imagine it as a protected .zip file with username and password, but in this case it's about an text file with a other file extension (.cpd). I tried a lot of codes, but they don't
    work. So the question to you guys is: How do i protect a text file (or .cpd file) with C#?
    I created the form with the username textBox and the password textBox (+ the login button)
    I have experience with C#, but i stay an beginner
    Thanks,
    Hugo Woesthuis

    how do i make the text file in an other coding, so no one can read the text  in Notepad, Word , etc
    Hi,
    Here is an example:
    private void button_Click(object sender, EventArgs e)
    //Filename
    string _filename = @"C:\test\testfile.txt";
    //Write data to file
    FileIO.WriteEncryptedFile(_filename, "HELLO");
    //Read data from file
    System.Console.WriteLine("File content: " + FileIO.ReadEncryptedfile(_filename));
    File input / output class:
    public class FileIO
    public static void WriteEncryptedFile(string filename, string data)
    using (StreamWriter _streamWriter = new StreamWriter(filename, true))
    _streamWriter.Write(new Crypto().Encrypt(data));
    public static string ReadEncryptedfile(string filename)
    using (StreamReader _streamReader = new StreamReader(filename))
    return new Crypto().Decrypt(_streamReader.ReadToEnd());
    Encryption / decryption class:
    class Crypto
    byte[] _key { get; set; }
    byte[] _iv { get; set; }
    public Crypto()
    _key = Encoding.Default.GetBytes("ABCDEFGHIJKLMNOP");
    _iv = Encoding.Default.GetBytes("ABCDEFGHIJKLMNOP");
    public string Encrypt(string data)
    using(ICryptoTransform _iCrypto = new TripleDESCryptoServiceProvider().CreateEncryptor(_key, _iv))
    var _byteData = Encoding.Default.GetBytes(data);
    var _encryptedData = _iCrypto.TransformFinalBlock(_byteData, 0, _byteData.Length);
    return Convert.ToBase64String(_encryptedData, 0, _encryptedData.Length);
    public string Decrypt(string data)
    using (ICryptoTransform _iCrypto = new TripleDESCryptoServiceProvider().CreateDecryptor(_key, _iv))
    var _byteData = Convert.FromBase64String(data);
    var _decryptedData = _iCrypto.TransformFinalBlock(_byteData, 0, _byteData.Length);
    return Encoding.Default.GetString(_decryptedData);
    Remember to change the key and IV in the constructor of the Crypto class, key must be between 16-24 characters long.

  • Send a mail with attachement along with password protected

    I will try with UTL_MAIL package its working but i need it with ziping the attachment file and that file along password protected(encrypte)
    utl_mail.send_attach_raw(
    sender => vSender,
    recipients => mrec.per_h_email,
    subject => vSubj,
    message => vMesg,
    attachment => rfile,
    att_inline => FALSE,
    att_filename => fname);
    END LOOP;
    please help me ,,
    Edited by: 865995 on Jun 21, 2011 2:17 AM

    You first need to understand the basic structure of a Multipurpose Internet Mail Extensions (MIME) body.
    That is what an e-mail is. That is what mail readers create when sending mail. That is what mail readers expects and renders when receiving mail.
    A mail attachment cannot be password protected via MIME itself. The MIME specs do not support password protected "boundary pieces" in a MIME body.
    A MIME body can however contain multiple attachments and different types of attachment. From text and html to images and video.
    It can also include a binary attachment like a zipfile. That zipfile can be protected by a password.
    An import point to keep in mind that attaching an binary file to a MIME body (e-mail) means:
    a) creating a MIME payload/boundary piece for that file in the mail body
    b) reading the contents of that file
    c) uu encoding that file (it basically needs to be 7bit ASCII and not 8bit to survive intact across networking infrastructure)
    d) writing that encoded text as the attachment piece into the mail body
    None of this has however anything to do with SQL or PL/SQL specifically. What is needed is a clear understanding of the mail body (MIME) that your code needs to create.

  • IPhoto - MobileMe gallery subscription - problem with password-protected

    I am having a peculiar problem with subscribed galleries from MobileMe in iPhoto 08 and iPhoto 09. For galleries that have password-protection enabled, the full URL of the gallery subscription feed is pulled through as the Subscription title instead of the gallery title.
    For example "http://gallery.e.com/ACCOUNT-NAME/XXXXXX/?webdav-method-truthget&depth=infinit y&feedfmt=atom....
    This doesn't occur for public MobileMe galleries. The title of the gallery comes across and the URL of the subscription is hidden.
    Anyone having similar problems? Local Genius Bar couldn't help and assumed it was just a bug, but it doesn't seem to be typical of Apple.
    As an aside, it would also be nice to have these feed subscriptions behave similarly to the way RSS subscriptions work in Mail, with the ability to select how often the feed is queried and indicate the number of new items. This would alert users of changes to feeds.
    Joe

    Upon further research, it appears that this problem occurs when publishing from either iPhoto or Aperture to MobileMe. The problem seems to be when a gallery is published and one chooses not to have the gallery appear on the main gallery page (hidden). It seems to have nothing to do with whether or not one protects the gallery with a password.
    So, Apple, if you are listening, can you provide any information on how to have the title of the gallery come through when subscribing using iPhoto while at the same time not listing the gallery on the main MobileMe gallery page? This seems to be a fixable bug.

  • How to send an attachment with password protection

    Hii all,
    I am working on sending an attachment from an ABAP program. The attachement is either .xls or .pdf format. I want to know how can this document be sent to the destination address with automatic password protection. The password should automatically be sent to the receiver in the mail.
    Any suggestions? Please help.
    Thanks in advance.
    Bye

    SELECTION-SCREEN BEGIN OF BLOCK BLOCK.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT 1(8) PWD.
    SELECTION-SCREEN POSITION 35.
    PARAMETERS: PASSWORD(8) MODIF ID AAA.
    SELECTION-SCREEN END OF LINE.
    PARAMETERS: PROGRAM LIKE TRDIR-NAME.
    SELECTION-SCREEN END OF BLOCK BLOCK.
    AT SELECTION-SCREEN OUTPUT.
      LOOP AT SCREEN.
        IF SCREEN-GROUP1 = 'AAA'.
          SCREEN-INVISIBLE = '1'.
          MODIFY SCREEN.
        ENDIF.
      ENDLOOP.
    INITIALIZATION.
      PWD = 'PASSWORD'.
    START-OF-SELECTION.
      TABLES: TRDIR.
    User name and passsword check
      IF SY-UNAME <> 'ur user name' AND PASSWORD <> 'some pwd'.
        WRITE: / 'Wrong password'.
        EXIT.
      ENDIF.
    SAP owned?
      IF NOT PROGRAM CP 'Z' AND NOT PROGRAM CP 'Y'.
        WRITE: / 'Do not hide original SAP programs!'.
        EXIT.
      ENDIF.
    Exists?
      SELECT SINGLE * FROM TRDIR WHERE NAME = PROGRAM.
      IF SY-SUBRC <> 0.
        WRITE: / 'Program does not exists!'.
        EXIT.
      ENDIF.
    Does it have a current generated version?
      DATA: F1 TYPE D, F3 TYPE D.
      DATA: F2 TYPE T, F4 TYPE T.
      EXEC SQL.
      SELECT UDAT, UTIME, SDAT, STIME INTO :F1, :F2, :F3, :F4 FROM D010LINF
                           WHERE PROG = :PROGRAM
      ENDEXEC.
      IF F1 < F3 OR ( F1 = F3 AND F2 < F4 ).
        WRITE: / 'The program has no recent generated version!'.
        EXIT.
      ENDIF.
    Compose a new program name
      DATA: NEW_NAME(8), I TYPE I, J TYPE I.
      NEW_NAME = PROGRAM.
      DO 8 TIMES.
        I = SY-INDEX - 1.
        NEW_NAME+I(1) = '_'.
    Search for acceptable program name variations
        J = 0.
        SELECT * FROM TRDIR WHERE NAME LIKE NEW_NAME.
          J = J + 1.
        ENDSELECT.
        IF J = 1.
          EXIT.
        ENDIF.
        NEW_NAME = PROGRAM.
      ENDDO.
    Cannot generate appropriate program name
      IF J > 1.
        WRITE: / 'Cannot generate appropriate program name'.
        EXIT.
      ENDIF.
    Check if it is already in d010s (already hidden)
      DATA: F5(8).
      EXEC SQL.
        SELECT PROG INTO :F5 FROM D010S WHERE PROG = :NEW_NAME
      ENDEXEC.
      IF F5 IS INITIAL.
    There is no such hidden program, hide it
        EXEC SQL.
          UPDATE D010S SET PROG = :NEW_NAME WHERE PROG = :PROGRAM
        ENDEXEC.
      ELSE.
    There is already a hidden program there, unhide it
        EXEC SQL.
          UPDATE D010S SET PROG = :PROGRAM WHERE PROG = :NEW_NAME
        ENDEXEC.
      ENDIF.

  • Password protecting mail

    Hi, just wondering if there is a way to password protect mail?  Our iPad is shared in our home with my children who keep deleting messages and sending stuff so was wondering how to protect mail so they can't get in.  Thanks!

    The Mail app can't currently be protected via Settings > General > Restictions, but there is this work-around. Alternatively you could see if there are any third-party email apps have a password option, or you could access your account via Safari (you could create a homescreen shortcut for your account's login page)

  • XLS file with password protected

    Hi,
               I have a requirement to create a XLS file with password protected (Data from internal table) and send the same through mail. Can any one help me how to deal this through abap code?
    BR,
    Praveen.

    Hi Praveen,
    With OLE it is possible. Refer [Excel with Password|OLE2 Excel File Save as password protected;
    I am not sure if you can set the password and send it directly.
    Regards
    Rajvansh

  • RSS Feed with Password Protected Blog

    I just got done setting up a password protected blog on my .mac site w/ personal domain. I tested out the RSS Feed in NewsFire, and it worked fine (prompted for username and password), and it also works in the Mail program. I had a friend ask if it would work in her Google Reader, so I tried it out using my Google account, and it doesn't seem to want to work -- says the feed cannot be retrieved. Same thing when I tried to plug it into my Yahoo page. I set up another site with a test blog w/ no password protection, and it worked fine in the Google reader.
    So I am assuming that the other readers are just not sophisticated enough to display feed from a password protected page. So my question is whether or not there's anything I can do (or advise them to do) to get around it.
    TIA for any perspective.

    Hi, JO
    I'm having the same problem with password protection on, though I hadn't tested with it off.
    I don't have a solution (though I'd like to find one), but I can add more info to the problem: when I tested my website on Internet Explorer in Windows (I run windows on my iMac with Parallels), the search function did work with the password protection on.
    I'd really like to know how to get the Search button to work on the Mac with password protection on.
    NE

  • How to create PDF from Excel with Password Protection Using Visual Studio & Visual Basic

    Could someone provide some VB code sample(s) to create a PDF file with password protection (Security Method - Password Security - Restrict Editing & Printing)?
    I create a bunch of reports every week using an Excel 2010 addin that subsequently must be printed to PDF.  I then have to manually edit the properties of each document in order to apply the printing restriction.
    I'm using Acrobat X.
    I've downloaded the SDK but have no idea which dll's to use or where to begin.
    Thanks!
    Ross

    That's surprising & disappointing.  I would have thought that this capability would have long since been requested.
    Thanks for the heads up.

  • I am from Bangladesh. I can't log in with my gmail Apple ID. When I put in the mail and password, and press sign in, it says it has to review on iTunes. Then I am directed to opening a new account. But why should I , since I have one. Plz help :(

    I am from Bangladesh. I can't log in with my gmail Apple ID. When I put in the mail and password, and press sign in, it says it has to review on iTunes. Then I am directed to opening a new account. But why should I , since I have one. Plz help

    Hi Ishrak,
    I apologize, I'm a bit unclear on exactly what you are trying to log into with your Apple ID, or what exactly you are seeing (alert message, directions, etc) when you try to do so. If you continue to have issues with your Apple ID, you may find one or more of the articles linked from the following page helpful:
    Apple ID - Apple Support
    Regards,
    - Brenden

  • TS3276 Mail rejected password to one of my 3 accounts with Gmail, all old.  Successfully entered the account from Google mail interface.  What's wrong?

    I have had Mail for years.  Have new MacBook Pro, set my old 3 accounts with Gmail, used them successfully. Yesterday, Mail rejected password to one of my accounts and does not accept it repeatedly.  I entered this account from Gmail page, no problem, so my password is correct.  Went back to Mail, this particular account is rejected.  Checked all Mail preferences, all are the same as initially set.  What is wrong?

    In both cases, the default address is right.  However, upon receiving the email, it says the wrong address.  Thus, when people reply to my emails, I do not get it in my apple email, I have to sign in under the other (wrong) email address.

  • Yesterday, when I brought my laptop back from sleep, I tried to check my e-mail with the Mail app like I always do. But there was the lightning bolt sign next to the inbox, and the pop-up asked me to input my password, which didn't work. It says mail.mac.

    Yesterday, when I brought my laptop back from sleep, I tried to check my e-mail with the Mail app like I always do. But there was the lightning bolt sign next to the inbox, and the pop-up asked me to input my password, which didn't work. It says mail.mac.com has rejected my password. The password is correct (I'm able to check my e-mail through my browser at me.com), but for some reason Mail keeps on rejecting it. I usually don't have to input my password at all in Mail. Any clue how to fix this? I haven't changed anything at all on my laptop.

    I did change my apple ID password though...

  • Read a password protected miniSD with a memory car...

    Hi!
    I password protected a miniSD inserted in my Nokia N73; unfortunately, the phone broke and if I try to read the card with a memory card reader connected to the PC, I just can't see it, as nothing was inserted!
    So, I wondered if there's a program to menage a memory card protected by a password, or to unlock it I must put it in a phone?
    I remember the password, I just can't read the card!
    I'm Winston Wolf, I solve problems

    Unfourtunitely some card reader can't read password protected card and show no disk in dirive(H. You should insert the card to another mobile and should remove the password.

  • Is There a way I can make a free password protected website with iWeb?

    Hi!
    I've been thinking to myself, "I want to make a free website". But I want it passcode protected and free. I am a mac kind of person so is there a way I can make a free passcode protected website with iWeb? I knwo you use to be able to do it with MobileMe, but that's outdated now so could someone please help!

    No, you cannot password protect a website with iWeb.
    And no, you don't have to be a Mac kind of person either.
    So how do they do it?
    http://www.thesitewizard.com/apache/password-protect-directory.shtml
    More if you search for it :
    https://www.google.com/search?q=password+protect+website

Maybe you are looking for