Plus & minus keys not available in address panel

I just started using Mac mail and was able to add new addresses to the address panel, but lately the plus and minus signs are not available in the address panel window. How do I get them back? Thanks.

Hello, and welcome to the Discussions.
What address panel? In Mail you can add the address of a sender of and email via a command, but to otherwise add an address in the Addressbook, you must open the separate Addressbook application. The panel of AB reached from within Mail only support getting an address that is already in the AB.
Ernie

Similar Messages

  • Plus/minus key no longer increments midi program selection?

    Hi guys,
    New to Logic X and discovered a weird thing. One of my common operations when selecting sounds is to use the plus/minus keys on the numeric keyboard to increment or decrement through the programs on attached midi external instruments. Been doing it since Logic 2.5. (Yeah, I'm that old!)
    Seems this fundamental bit of navigation doesn't work, or is hidden in Logic Pro X.
    Any ideas?

    Hello,
    errorflex wrote:
    Well, that got ugly for a little while! Discovered there are two other prefs files other than the .plist and Logic gets REALLY confused if you don't move them all.
    There are basically 2 preference files that could play a role in causing problems in Logic. The "main" preferences file (the one that stores eveyrything you see in Logic's preference window) "com.apple.logic10.plist", and the control surfaces preferences file "coma.apple.logic.pro.cs". The other file you're seeing is probably the "com.apple.logic10LSSharedFileList.plist" one. This one only saves infor about recent (project) files Logic has used. These files are independent from each other and Logic wil not get "confused" if you move one and not the other.
    errorflex wrote:
    While I was in brand new prefs land, however, I did try to see if my original problem was solved.
    Short answer...NOPE.
    Sigh...
    OK, so your preference files are not corrupted. Must be a key commands problem then. Try switching to a different key commands preset in the Key Commands window. You could also try reassigning those commands to something else (other than +/-) and see what happens.
    J.

  • Primary key not available

    Hi!
    When i run my appication client to connect to Oracle9i database i have a next exception:
    javax.ejb.CreateException: java.lang.IllegalStateException: Primary key not available.
    In Oracle i set a primary key field ID.
    Here is my code:
    /* Generated by Together */
    package ejb;
    import javax.ejb.EntityBean;
    import javax.ejb.EntityContext;
    import javax.ejb.EJBException;
    import javax.ejb.CreateException;
    import java.sql.SQLException;
    import java.sql.Connection;
    import javax.naming.InitialContext;
    import javax.naming.NamingException;
    import java.sql.PreparedStatement;
    import javax.ejb.NoSuchEntityException;
    import java.sql.ResultSet;
    import javax.ejb.DuplicateKeyException;
    import javax.ejb.RemoveException;
    import java.util.Collection;
    import java.util.ArrayList;
    import javax.ejb.FinderException;
    import javax.sql.DataSource;
    import java.lang.Integer;
    import java.lang.String;
    import java.rmi.RemoteException;
    import javax.sql.*;
    import java.sql.DriverManager;
    public class TestingBean implements EntityBean {
    private EntityContext ctx;
    public Integer userID;
    public String userLogin;
    public String userPassword;
    public String userPrivilege;
    static private final String users_res_ref = "jdbc/Oracle";
    public void setEntityContext(EntityContext context) throws EJBException {
    System.out.println("EntityContext before = " + ctx);
    ctx = context;
    System.out.println("EntityContext after = " + ctx);
    public void unsetEntityContext() throws EJBException {
    ctx = null;
    public void ejbActivate() throws EJBException {
    public void ejbPassivate() throws EJBException {
    public void ejbRemove() throws EJBException {
    Connection con = null;
    PreparedStatement ps = null;
    try {
    con = getConnection();
    userID = (Integer)ctx.getPrimaryKey();
    ps = con.prepareStatement("DELETE FROM TLogon WHERE Id = ?");
    ps.setInt(1, userID.intValue());
    if (!(ps.executeUpdate() > 0)) {
    throw new RemoveException ("ejbLoad: Can't remove user - " + userID);
    catch (Exception e) {
    throw new EJBException(e);
    finally {
    closeStatement(ps);
    closeConnection(con);
    public void ejbStore() throws EJBException {
    Connection con = null;
    PreparedStatement ps = null;
    try {
    con = getConnection();
    ps = con.prepareStatement("UPDATE TLogon SET Login = ?, Password = ?, Privilege = ? WHERE Id = ?");
    ps.setString(1, userLogin);
    ps.setString(2, userPassword);
    ps.setString(3, userPrivilege);
    ps.setInt(4, userID.intValue());
    ps.executeUpdate();
    catch (Exception e) {
    throw new EJBException(e);
    finally {
    closeStatement(ps);
    closeConnection(con);
    public void ejbLoad() throws EJBException {
    Connection con = null;
    PreparedStatement ps = null;
    userID = (Integer)ctx.getPrimaryKey();
    try {
    con = getConnection();
    ps = con.prepareStatement("SELECT Id, Login, Password, Privilege FROM TLogon WHERE Id = ?");
    ps.setInt(1, userID.intValue());
    ps.executeQuery();
    ResultSet rs = ps.getResultSet();
    rs.next();
    userLogin = rs.getString("Login");
    userPassword = rs.getString("Password");
    userPrivilege = rs.getString("Privilege");
    catch (Exception e) {
    throw new EJBException("ejbLoad: Can't load user - " + userID);
    finally{
    closeStatement(ps);
    closeConnection(con);
    public Integer ejbCreate(Integer aUserID, String aUserLogin, String aUserPassword, String aUserPrivilege) throws CreateException, EJBException, SQLException {
    System.out.println("Inititialization parameters...");
    this.userID = aUserID;
    this.userLogin = aUserLogin;
    this.userPassword = aUserPassword;
    this.userPrivilege = aUserPrivilege;
    System.out.println("Setting connection to null...");
    Connection con = null;
    PreparedStatement ps = null;
    try {           
    System.out.println("Getting connection...");
    con = getConnection();
    System.out.println("EntityContext before getting primary key... = " + ctx);
    System.out.println("Getting primary key...");
    userID = (Integer)ctx.getPrimaryKey();
    System.out.println("Primary key is done...");
    ps = con.prepareStatement("INSERT INTO TLogon (Id, Login, Password, Privilege) VALUES (?,?,?)");
    System.out.println("Inserting data...");
    ps.setInt(1, userID.intValue());
    ps.setString(2, userLogin);
    ps.setString(3, userPassword);
    ps.setString(4, userPrivilege);
    ps.executeUpdate();
    return aUserID;
    catch (Exception e) {
    throw new CreateException(e.toString());
    finally{
    closeStatement(ps);
    closeConnection(con);
    public Integer ejbFindByPrimaryKey(java.lang.Integer pk) throws FinderException, EJBException {
    Connection con = null;
    PreparedStatement ps = null;
    try {
    con = getConnection();
    ps = con.prepareStatement("SELECT Id, Login, Password, Privilege FROM TLogon WHERE Id = ?");
    ps.setInt(1, pk.intValue());
    ps.executeQuery();
    ResultSet rs = ps.getResultSet();
    rs.next();
    return pk;
    catch(Exception e) {
    throw new FinderException (e.toString());
    finally {
    closeStatement(ps);
    closeConnection(con);
    public void ejbPostCreate(Integer aUserID, String aUserLogin, String aUserPassword, String aUserPrivilege) throws CreateException, EJBException, SQLException {
              /* Write your code here */
    public Collection ejbFindAllUsers() throws EJBException, FinderException {
    Connection con = null;
    PreparedStatement ps = null;
    try {
    con = getConnection();
    ps = con.prepareStatement("SELECT Id FROM TLogon");
    ps.executeQuery();
    ResultSet rs = ps.getResultSet();
    ArrayList v = new ArrayList();
    Integer pk;
    while(rs.next()) {
    pk = new Integer(rs.getInt(1));
    v.add(pk);
    return v;
    catch(Exception e) {
    throw new FinderException(e.toString());
    finally {
    closeStatement(ps);
    closeConnection(con);
    public Integer getUserID() throws RemoteException, EJBException {return userID;}
    public void setUserID(Integer param) throws RemoteException, EJBException {this.userID = param;}
    public String getUserLogin() throws RemoteException, EJBException {return userLogin;}
    public void setUserLogin(String param) throws RemoteException, EJBException {this.userLogin = param;}
    public String getUserPassword() throws RemoteException, EJBException {return userPassword;}
    public void setUserPassword(String param) throws RemoteException, EJBException {this.userPassword = param;}
    public String getUserPrivilege() throws RemoteException, EJBException {return userPrivilege;}
    public void setUserPrivilege(String param) throws RemoteException, EJBException {this.userPrivilege = param;}
    private Connection getConnection() throws SQLException {
    InitialContext initCtx = null;
    try {
    initCtx = new InitialContext();
    DataSource ds = (javax.sql.DataSource)initCtx.lookup("java:comp/env/" + users_res_ref);
    return ds.getConnection();
    catch (Exception e) {
    throw new EJBException(e);
    private void closeStatement(PreparedStatement ps) {
    try {
    if (ps != null) {ps.close();}
    catch (Exception e) {
    throw new EJBException(e);
    private void closeConnection(Connection con) {
    try {
    if(con != null) {con.close();}
    catch(Exception e) {
    throw new EJBException(e);
    What i do wrong?
    Please help!!!!

    Very BIG thank you!!!!
    That's right, but i must delete this method only in ejbCreate?
    And i have a next exception: java.sql.SQLException: ORA-00947: not enough values. Why?
    Here is my code db:
    CREATE TABLE "SYSTEM"."TLOGON" ("ID" NUMBER(20) NOT NULL, "LOGIN"
    VARCHAR2(20 byte) NOT NULL, "PASSWORD" VARCHAR2(20 byte) NOT
    NULL, "PRIVILEGE" VARCHAR2(20 byte) NOT NULL,
    CONSTRAINT "ID" PRIMARY KEY("ID")
    USING INDEX
    TABLESPACE "SYSTEM"
    STORAGE ( INITIAL 12K NEXT 12K MINEXTENTS 1 MAXEXTENTS
    2147483645 PCTINCREASE 50 FREELISTS 1 FREELIST GROUPS 1)
    PCTFREE 10 INITRANS 2 MAXTRANS 255)
    TABLESPACE "SYSTEM" PCTFREE 10 PCTUSED 40 INITRANS 1
    MAXTRANS 255
    STORAGE ( INITIAL 12K NEXT 12K MINEXTENTS 1 MAXEXTENTS 249
    PCTINCREASE 50 FREELISTS 1 FREELIST GROUPS 1)
    LOGGING
    And my client:
    package ejb.client;
    import javax.naming.Context;
    import javax.rmi.PortableRemoteObject;
    import ejb.TestingHome;
    import ejb.Testing;
    import java.util.Collection;
    import java.rmi.RemoteException;
    import javax.ejb.FinderException;
    import javax.naming.InitialContext;
    public class TestingClient {
    public static void main(String []args) {
    try {
    System.out.println("Step #1");
    Context initial = new InitialContext();
    System.out.println("Step #2");
    Object objref = initial.lookup("java:comp/env/ejb/SimpleTesting");
    System.out.println("Step #3");
    ejb.TestingHome home = (ejb.TestingHome)PortableRemoteObject.narrow(objref, ejb.TestingHome.class);
    System.out.println("Step #4");
    ejb.Testing aTesting;
    for(int i = 0; i < 3; i++) {
    String login = users[0];
    String password = users[i][1];
    String privilege = users[i][2];
    System.out.println("Adding user..." + login + "\n" + password + "\n" + privilege);
    home.create(new Integer(i+1), login, password, privilege);
    Integer i = new Integer(2);
    home.create(i, "Zatoka", "password", "admin");
    catch(Exception e) {
    e.printStackTrace();
    //private static String JNDI = "ejb.TestingHome";
    private final static String[][] users = {{"Zatoka","*****","admin"}, {"Ivanov","234fds","user"},{"Petrov","dcd2","user"}};
    BIG thanks!!!

  • Security Question - Public Key not available

    Hello! I am trying to access some online class, but I'm having difficulty accessing them. I tried looking at the log and I found this:
    4/11/14 3:59:23.215 PM secd[235]:  SecErrorGetOSStatus unknown error domain: com.apple.security.sos.error for error: The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call)
    Can I have any help/clue in order for this to stop? If it helps, I tried doing this in AKO (military).
    Thanks!

    Thanks Mark M - That was the issue.
    Of all the documentation in books and online i saw, basically say:
    --Create a page, give it alias PUBLIC_PAGE
    --At the page level,  set it to "page is public"
    --Change the logout URL in authentication template to redirect to the new page
    The fourth step i guess is to make sure your app level authorization is set appropriately as well.
    Thanks again.

  • Dv8-1100 touch pad control not available via control panel

    I can not change the sensitivity of the touch pad. The touch pad option do not show in ctnl panel.
    This question was solved.
    View Solution.

    Hi,
    First, download the latest Synaptics driver installer on the link below and save it to your Downloads folder.
    http://ftp.hp.com/pub/softpaq/sp45001-45500/sp45019.exe
    Next, open windows Control Panel, open Programs and Features and if you see the entry 'Synaptics Pointing Device Driver', right click it and select Uninstall.
    If you did need to uninstall this, restart the notebook.
    When windows has fully reloaded, or if you didn't need to uninstall an existing Synaptics application, open your Downloads folder, right click the Synaptics installer and select 'Run as Administrator' to start the installation.  When this has completed, restart the notebook again.
    You should now find the settings you require if you open windows Control Panel, open Mouse, click the Device Settings tab and then click the settings button.
    Regards,
    DP-K
    ****Click the White thumb to say thanks****
    ****Please mark Accept As Solution if it solves your problem****
    ****I don't work for HP****
    Microsoft MVP - Windows Experience

  • Registration Key not available in Zenworks Adaptive Agent

    No "registration key" is visible in Zenworks Adaptive Agent - Agent - Registration Keys.
    The device is managed and imported in the correct folder on the server side and all assigned bundles and policies are applied and working. But i need a way to see which Registration Key a workstation is registered with, from within client. The keys is visible right after a new registration but if a new image is restored on the workstation everything is ok except the Registration Key. Any ideas ?
    Workstation:
    Windows 7 Enterprise 64-bit, without SP1
    Novell Client 2 SP1
    ZENworks Endpoint Securty Agent version: 11.0.0.427
    Agent Status:
    Bundle Management 11.0.0.40588 Running
    Image Management 11.0.0.38897 Running
    Inventory Management 11.0.0.40407 Running
    Policy Management 11.0.0.39203 Running
    Remote Management 11.0.0.37147 Running
    User Management 11.0.0.41084 Running
    Server:
    ZCM Version 11.0.0.0
    ZAM Version 11.0.0.41090
    ZPM Version 11.0.0.50
    ZESM Version 11.0.0.40872

    jimbjorklund,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://forums.novell.com)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://forums.novell.com/faq.php
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://forums.novell.com/

  • Pagedown key not available in Windows98?

    We trying to run Dev 6.0 on a windows 98 client. The pagedown
    key no longer works either as scroll down or next block with
    Control+pagedown. I have tried to add it using oracle terminal,
    but get errors on the word 'PageDown'. I called in a TAR on
    this issue and was told a new bug had been created on this (Bug#
    880351). I was told that it was not a priority 1 issue and
    should not expect a fix anytime soon.
    I don't understand how this is possible. PageDown and
    Control+Pagedown have been the default scroll down and next
    block keystrokes for years on the Windows & Dos platforms.
    Someone must have run across this during testing and come up
    with a workaround. I assume I'm not the first person to try to
    use the PageDown key in Dev 6.0.
    I tried using the frmusw.res file from the beta CD. This did
    not work either.
    If anyone is using 6.0 in windows98 and has the pagedown key
    working can you let me know?
    Thanks
    null

    Bill Carrick (guest) wrote:
    : We trying to run Dev 6.0 on a windows 98 client. The pagedown
    : key no longer works either as scroll down or next block with
    : Control+pagedown. I have tried to add it using oracle
    terminal,
    : but get errors on the word 'PageDown'. I called in a TAR on
    : this issue and was told a new bug had been created on this
    (Bug#
    : 880351). I was told that it was not a priority 1 issue and
    : should not expect a fix anytime soon.
    : I don't understand how this is possible. PageDown and
    : Control+Pagedown have been the default scroll down and next
    : block keystrokes for years on the Windows & Dos platforms.
    : Someone must have run across this during testing and come up
    : with a workaround. I assume I'm not the first person to try
    to
    : use the PageDown key in Dev 6.0.
    : I tried using the frmusw.res file from the beta CD. This did
    : not work either.
    : If anyone is using 6.0 in windows98 and has the pagedown key
    : working can you let me know?
    : Thanks
    This is NOT a Win 98 problem it's general and in production also.
    They 'forgot' the keys !!! Support told me this is to be fixed
    in 6.0.6. They also forgot to deliver Oracle Terminal with which
    you could correct the problem. More than sad. BTW are they
    really doing tests ?
    Frank
    null

  • Menu key not available on app

    New owner of S5 after having S3. Notice that the menu key brings up loaded apps not the menu for the app what the s3 home key did when held down. Lot of apps don't have the new style menu.

    tangerine wrote:
    OK, so when you press the unlock icon that has flashed up, does the phone not select the homescreen?
    Yes, it does. I have an update though. I left the phone switched off all night and when I restarted it this morning the button is working again! Very confusing as I restarted it countless times yesterday after the problem first emerged.
    However, I now have another problem with the unit though where the battery is only lasting about 4 hours. There is an incredible amount of heat on the back of the phone.
    I will post it as a new thread....
    Ilove nokias but they do have a habit of behaving like this. Frustrating.

  • Keys not typing in address book

    I was adding some numbers to my address book in my new Pearl and the numbers won't type. It worked the first time I did it but when I went back to add more, it won't work. I can type names and email addresses, but no phone numbers. Does anyone know what I'm doing wrong and how I can fix it?? I've tried holding the alt key and still nothing happens.
    Thanks!

    I'd start by doing a shift-login; i.e., hold down the shift key just after you enter your login password and keep holding it until the desktop appears. That prevents your login items from loading.
    Then try moving your AB database in
    Library/Application Support/AddressBook
    out of the way and creating a new one. If that isn't it, try the preference files,
    Library/Preferences/com.apple.AddressBook.abd.plist Library/Preferences/com.apple.AddressBook.plist
    Then there are various cache files you can delete.

  • Product Key Not Available

    I was able to successfully download the Visio Premium 2010 60 day trial software. However, the Product Key information stated: "Please refresh your browser (F5) to receive your key". Nothing happened when
    I refreshed, and I continued to receive the same message. I cannot use the software without the Product Key. Any thoughts on how to resolve this issue?
    Thanks!

    Hi,
    We can try clearing the Temporary Internet Files and Cookies in IE to try again.
    Open Internet Explorer, Internet Options, under
    General tab, click Delete button, select the checkboxes of
    Temporary Internet files and website files and Cookies and website data, click
    Delete button.
    Another way, simply go back and re-register your account, see if this time the product key will come up on the download page.
    Hopefully it can be helpful.
    Regards,
    Melon Chen
    TechNet Community Support

  • Key not available

    I have a use case where I have a child table with a foreign key from the master table, and the key is being generated from a sequence.
    And I have to insert data into the child table ,before I insert in the master table.So how do I insert the foreign key?

    User,
    If you are using ADF BC and your requirement is to insert records into master and detail at the same time, you can provide a groovy expression to generate and assign the sequence number to the primary key field of master VO
    Eg.
    (new oracle.jbo.server.SequenceImpl("<Sequence_Name>",viewObject.getDBTransaction())).sequenceNumberSireesha
    Edited by: Sireesha Pinninti on Mar 1, 2010 2:11 AM

  • Windows Update is not available in Control Panel

    Hi.
    I upgraded Windows 10 ETP 9926 to 10041 and Windows Update disappeared from the Control Panel.
    How to add it back? I made a lot fo restarts, but nothing has changed.

    Hi Lukas,
    In 9926, if you changed the regedit value you could display the windows update in the old control panel.
    See these steps:
    Enable Windows Update in Control Panel - Windows 10 Build 9926
    In 10041, this will also show the windows update in the old control panel but I have had problems checking for windows update. When I disabled the windows update from the old control panel, my windows update started running normally. So I guess, they have
    finally blocked checking updates the old way.
    Hope this helps..

  • Opensource ATI can't switch video modes with CTRL+ALT+plus/minus

    Hi,
    I've updated my system to the new xorg-server and video driver.
    The new video driver (xf86-video-ati-6.7.195-1) can't switch video modes with the CTRL+ALT+plus/minus key combination. I use this key combination a lot and before I upgraded to the new driver this worked :-(
    Anybody else having this problem?
    I know I can use xrandr to change the video mode, but it doesn't exactly do what I want. Xrandr changes the video mode, but also changes the resolution of the screen, while CTRL+ALT+plus/minus keeps the resolution intact (the screensize is bigger than what is seen on the monitor, you can scroll the screen by moving the mouse "out" of the monitor)
    Is there a fix/patch that I can try?

    It looks like this is the result of the new opensource ati drivers use the new xrandr.
    One of the changes is that it will treat the screen section in xorg.conf differently. Browsing through video modes, using the CTRL+ALT+plus/minus key combination, that are defined in the screen section in xorg.conf is not possible anymore.

  • How can I save a page and all its component parts in a single file, like IE does as an MHT - it's much easier for mailing to people where page address not available?? (as in output from an airline booking site, for example)

    how can I save a page and all its component parts in a single file, like IE does as an MHT?
    It's much easier for mailing to people where page address not available?? (as in output from an airline booking site, for example)
    It is simply too painful to have to zip everything up into a single file to send. MHT format has been available for years now from IE, and with every new FF release it's the first thing I look for. I have been using FF for years, and hate having to come out of it, over into IE |(which I even took out of startup) and key everything in again, in order to send somebody something in a convenient format that they can open with a single click.
    I can't believe this hasn't been asked before, so have you looked at it and rejected it? Have MS kept the file format secret?
    Thanks
    MG

    This is not really an answer just my comments on your question.
    I am sure I recollect efforts being made to get mhtml to work with FF.
    Probably the important thing to remember about .mhtml is that if other browsers do support it they may need addons, and may not necessarily render the content correctly/consistently.
    There are FF addons designed for archiving webpages, you could try them, but that then assumes the recipient has the same software.
    You could simply save the page from FF to your XP pc; then offline open it with and save it using IE, before then emailing using FF, and attaching the .mht or mhtml file that you have now created on your PC.
    As an alternative method, in some cases it could be worth considering taking a screen grab of the required page, then sending that to the recipient as a single email attatchment using either a bitmap or jpeg file format for instance.
    Something such as an airline booking may be designed with a print option, possibly it could be worthwile looking at sending the print file itself as an email attachment.

  • PPTP "MPPE required, but keys are not available"

    Dear all
    Since last reboot of my server I got following errormessage in VPN Logfile when user tries to connect to the server trough PPTP:
    MPPE required, but keys are not available. Possible plugin problem?
    Anyone have an idea, what could be wrong ?
    May as another information: After restart of the server I had problem, that VPN Server was not started, because the L2TP definitions where not correct... Logfile told me. So I have redefined the PPTP and L2TP setting, but disabled the L2TP login, because I have definied this "only" for test purposes. All definitions where made with Server Administrator.
    Before restart of Server Login trough PPTP was working quite well...
    I forgott to say, that the Server (Leopard 10.5.1) is an OD Master, which is working quite well (until now). The authentication type for PPTP is set to MS-CHAP (Kerberos is grayed out, I don't know why)
    Cheers Daniel
    Message was edited by: Daniel Lang

    Here I have now some logfiles from vpnd... may this helps to see the problem I have overseen:
    Wed Dec 12 02:21:21 2007 : Directory Services Authentication plugin initialized
    Wed Dec 12 02:21:21 2007 : Directory Services Authorization plugin initialized
    Wed Dec 12 02:21:21 2007 : PPTP incoming call in progress from 'xxx.xxx.xxx.xxx'...
    Wed Dec 12 02:21:21 2007 : PPTP connection established.
    Wed Dec 12 02:21:21 2007 : using link 0
    Wed Dec 12 02:21:21 2007 : Using interface ppp0
    Wed Dec 12 02:21:21 2007 : Connect: ppp0 <--> socket[34:17]
    Wed Dec 12 02:21:21 2007 : sent [LCP ConfReq id=0x1 <asyncmap 0x0> <auth chap MS-v2> <magic 0x5045e9f1> <pcomp> <accomp>]
    Wed Dec 12 02:21:21 2007 : rcvd [LCP ConfReq id=0x0 <mru 1400> <magic 0xfb9005f> <pcomp> <accomp> <callback CBCP>]
    Wed Dec 12 02:21:21 2007 : lcp_reqci: rcvd unknown option 13
    Wed Dec 12 02:21:21 2007 : lcp_reqci: returning CONFREJ.
    Wed Dec 12 02:21:21 2007 : sent [LCP ConfRej id=0x0 <callback CBCP>]
    Wed Dec 12 02:21:21 2007 : rcvd [LCP ConfReq id=0x1 <mru 1400> <magic 0xfb9005f> <pcomp> <accomp>]
    Wed Dec 12 02:21:21 2007 : lcp_reqci: returning CONFACK.
    Wed Dec 12 02:21:21 2007 : sent [LCP ConfAck id=0x1 <mru 1400> <magic 0xfb9005f> <pcomp> <accomp>]
    Wed Dec 12 02:21:24 2007 : sent [LCP ConfReq id=0x1 <asyncmap 0x0> <auth chap MS-v2> <magic 0x5045e9f1> <pcomp> <accomp>]
    Wed Dec 12 02:21:24 2007 : rcvd [LCP ConfAck id=0x1 <asyncmap 0x0> <auth chap MS-v2> <magic 0x5045e9f1> <pcomp> <accomp>]
    Wed Dec 12 02:21:24 2007 : sent [LCP EchoReq id=0x0 magic=0x5045e9f1]
    Wed Dec 12 02:21:24 2007 : sent [CHAP Challenge id=0x82 <ea8c6372a227309685ab6c0a36d64aec>, name = "server.anywhere.com"]
    Wed Dec 12 02:21:24 2007 : rcvd [LCP code=0xc id=0x2 0f b9 00 5f 4d 53 52 41 53 56 35 2e 31 30]
    Wed Dec 12 02:21:24 2007 : sent [LCP CodeRej id=0x2 0c 02 00 12 0f b9 00 5f 4d 53 52 41 53 56 35 2e 31 30]
    Wed Dec 12 02:21:24 2007 : rcvd [LCP code=0xc id=0x3 0f b9 00 5f 4d 53 52 41 53 2d 30 2d 50 43 31 36 37]
    Wed Dec 12 02:21:24 2007 : sent [LCP CodeRej id=0x3 0c 03 00 15 0f b9 00 5f 4d 53 52 41 53 2d 30 2d 50 43 31 36 37]
    Wed Dec 12 02:21:24 2007 : rcvd [LCP EchoRep id=0x0 magic=0xfb9005f]
    Wed Dec 12 02:21:24 2007 : rcvd [CHAP Response id=0x82 <41....0>, name = "testuser"]
    Wed Dec 12 02:21:24 2007 : DSAuth plugin: Could not retrieve key agent account information.
    Wed Dec 12 02:21:24 2007 : sent [CHAP Success id=0x82 "S=4020C83B....A M=Access granted"]
    Wed Dec 12 02:21:24 2007 : CHAP peer authentication succeeded for testuser
    Wed Dec 12 02:21:24 2007 : DSAccessControl plugin: User 'testuser' authorized for access
    Wed Dec 12 02:21:24 2007 : MPPE required, but keys are not available. Possible plugin problem?
    Wed Dec 12 02:21:24 2007 : sent [LCP TermReq id=0x4 "MPPE required but not available"]
    Wed Dec 12 02:21:24 2007 : rcvd [CCP ConfReq id=0x4 <mppe +H +M +S +L -D +C>]
    Wed Dec 12 02:21:24 2007 : rcvd [IPCP ConfReq id=0x5 <addr 0.0.0.0> <ms-dns1 0.0.0.0> <ms-wins1 0.0.0.0> <ms-dns3 0.0.0.0> <ms-wins3 0.0.0.0>]
    Wed Dec 12 02:21:24 2007 : rcvd [LCP TermAck id=0x4 "MPPE required but not available"]
    Wed Dec 12 02:21:24 2007 : Connection terminated.
    Wed Dec 12 02:21:24 2007 : Connect time 0.1 minutes.
    Wed Dec 12 02:21:24 2007 : Sent 0 bytes, received 0 bytes.
    Wed Dec 12 02:21:25 2007 : PPTP disconnecting...
    Wed Dec 12 02:21:25 2007 : PPTP disconnected
    2007-12-12 02:21:25 CET --> Client with address = 192.168.yyy.yyy has hungup

Maybe you are looking for

  • Is it possible to call Java routines from FMS?

    Say I have a game package, most of which are written in Java. I am thinking to leave the core logics in Java, but change the user interface into Flash, and serve it over FMS. Now is it possible to call Java routines from FMS? I'd appreciate any sugge

  • Error in Reordering Colums of a table

    I have extended one VO and added its column to a existing table layot of OAF Page in iProcurement. As such its OK. But when i try to reorder the columns, and try to bring my new column in the second position it gives the following error. Message not

  • Just installed CS5 Design Premium and Adobe Air doesn't work

    I just blew over $2000.00 on this software and installed it on my new i7 MacBook Pro. So far, all the software seems to be working, but when I click on help, I get a message that says the following: "This installation of this application is damaged.

  • What's force quit keys on older Mac keyboard

    I recently overburdened my system by burning a disk and doing several other high tasking operations at the same time. I was unable to access the Apple menu to force quit. What is the force quit key combination on an older keyboard - I have the Apple

  • SQl  excecute plan

    SQL Statement SELECT   "VBELN" , "PARVW" , "KUNNR" FROM   "VBPA" WHERE   "MANDT" = '210' AND "VBELN" IN ( '400000','400019','400019','400066','400066','500000' ) AND (   "PARVW" = 'AG' OR "PARVW" = 'RE' ) Execution Plan SELECT STATEMENT ( Estimated C