Investigating users

Hi,
I'm a single user of a single KDE desktop. For some reason, with KDE I've always been logged in twice (always once, as long as my conscious act is concerned, which is my point). Today there are three of me:
$ users
llama llama llama
Is there a way to uncover the entities which keep on logging in in my name?

Llama wrote:
$ who
llama   :0           2013-01-05 07:58
llama   pts/0        2013-01-05 07:58 (:0)
llama   pts/1        2013-01-05 07:58 (:0)
pts has something to do with remote connections. What are they in my case? None of my conscious activities, sure.
No, "pts/X" are pseudo ttys which are open when you use a terminal emulator (and of course remote sessions as well). The reason why you see multiple logged in users is because your konsole (you use KDE, right?) updates utmp entry. You need to scout its config to set the corresponding setting to false.

Similar Messages

  • Investigating another user cache file. How do I bring it up, versus my own being brought up?

    I need to view another users cache content in 'about:cache' or another listing method. How do I accomplish this?

    Try:
    *http://www.nirsoft.net/utils/mozilla_cache_viewer.html

  • Unable to create user in PKGBUILD / fakeroot

    tl;tr Package creation witk makepkg crashes if a certain user does not exist
    I'm maintaining package Icinga [1] and I've had three comments about the way the pakage wants to install. Following the install from the official documentation [2] a user needs to be created. This will be the main user for the build process. Is built with [3]:
    --with-icinga-user=${_icinga_user} \
    --with-icinga-group=${_icinga_user} \
    thus owning the main files to that user. This is a preferred e.g. suPhp [4][5] method where exposed (web/server) files are not owned by root or http but by a limited user. Apart from my ideas of a safe environment I want to be able to package an application the way it's intended by the creators.
    I've investigated an researched a decent amount. I found [6] discussing the possibility of creating a user. One of the examples [7] tries to create a temporary user inside the fakeroot environment of build() and poackage():
    if [ -z $(getent passwd $_amandauser) ] ; then
    msg "Adding user/group (temporarily)"
    groupadd -g $_amandagid $_amandagroup
    useradd -u $_amandauid -g $_amandagroup -G storage,disk -m -d /var/amanda -s /bin/bash -c "Amanda Backup Daemon" $_amandauser
    _cleanup=1
    else
    _cleanup=0
    fi
    but that fails as this snippet shows
    $ faketroot
    # groupadd -g 667 icinga
    # groupadd: PAM: Authenticatie service kan geen authenticatie informatie ophalen
    Interestingly emerge (Gentoo) has a function to add a user in pkg_setup() [8]
    enewgroup icinga
    enewuser icinga -1 -1 /var/spool/icinga icinga -c "icinga alert"
    The only reference to such idea in the Arch world is a keyword in PKGBUILD [9] like
    require_user('user1' 'user2')
    require_group('group1')
    What I did manage is removing all chown's from PKGBUILD, create a user in post_install() and chown several files to that user [10]. I would regard that a highly unsafe operation. Can anyone think of a better solution to be able to build() and later.package() an application when it's uncertain if a user exists? It might be helpful to exit makepkg in an early stage with a clear message (instructions to create the user) if that user doesn't exist.
    [1] https://aur.archlinux.org/packages/icinga/
    [2] http://docs.icinga.org/latest/en/quicks … ateaccount
    [3] https://aur.archlinux.org/packages/ic/icinga/PKGBUILD
    [4] http://www.suphp.org/Home.html
    [5] https://wiki.archlinux.org/index.php/Suphp
    [6] https://bbs.archlinux.org/viewtopic.php?id=105894
    [7] https://aur.archlinux.org/packages/am/amanda/PKGBUILD
    [8] https://271339.bugs.gentoo.org/attachment.cgi?id=287405
    [9] https://wiki.archlinux.org/index.php/De … D_Database
    [10] http://sprunge.us/XMgi?sh
    Last edited by foppe (2013-04-03 13:56:41)

    progandy wrote:I wanted to know whether my thoughts were realistic first
    https://github.com/progandy/fakeuser
    tl;tr Works like a charm
    git clone git://github.com/progandy/fakeuser.git
    cd fakeuser
    make
    # Folder fakeuser contains libfakeuser.so and fakeadd
    # Folder fakeuser/example-makepkg contains fakepkg
    wget https://aur.archlinux.org/packages/ic/icinga/icinga.tar.gz
    tar -zxf ./icinga.tar.gz
    cd icinga
    # Prepare MAKEPKG see [1]
    # Mostly:
    ## fakeadd -G -n $_icinga_group -g 667
    ## fakeadd -U -n $_icinga_user -u 667 -g 667
    # Prepare icinga.install see [2] - created group/user icinga:icinga in pre_install()
    # Make sure the user icinga:icinga doesn't exist
    sudo userdel icinga
    sudo groupdel icinga
    # copy fakepkg
    cp ../example-makepkg/fakepkg .
    # run fakepkg instead of makepkg
    ./fakepkg
    # Works like a charm
    # installing package
    sudo pacman -U icinga-1.8.4-2-x86_64.pkg.tar.xz
    # test
    ls -al /usr/share/webapps/icinga
    # drwxrwxr-x 10 icinga icinga 4096 5 apr 12:37 .
    # drwxr-xr-x 3 root root 4096 5 apr 12:37 ..
    # drwxr-xr-x 2 icinga icinga 4096 5 apr 12:37 cgi-bin
    # <snip>
    # drwxrwxr-x 2 icinga icinga 4096 5 apr 12:37 ssi
    # drwxrwxr-x 2 icinga icinga 4096 5 apr 12:37 stylesheets
    ls -al /var/spool/icinga
    # drwxr-xr-x 4 icinga icinga 4096 5 apr 12:37 .
    # drwxr-xr-x 10 root root 4096 5 apr 12:54 ..
    # drwxrwxr-x 2 icinga icinga 4096 5 apr 12:37 checkresults
    # drwxr-xr-x 2 icinga icinga 4096 5 apr 12:37 rw
    # [1] http://sprunge.us/ISjA?sh
    # [2] http://sprunge.us/PUPI?sh
    I used a modified PKGBUILD [1] plus a modified icinga.install [2]. The PKGBUILD adds the fakeuser
    package() {
    fakeadd -G -n $_icinga_group -g 667
    fakeadd -U -n $_icinga_user -u 667 -g 667
    cd "$srcdir/$pkgname-$pkgver"
    The icinga.install file adds the read user in pre_install()
    pre_install() {
    _icinga_user="icinga"
    _icinga_group="icinga"
    _icinga_gid=667
    _icinga_uid=667
    getent group icinga > /dev/null || groupadd -g $_icinga_gid $_icinga_group > /dev/null
    getent passwd icinga > /dev/null || useradd -u $_icinga_uid -g $_icinga_group -G http \
    -d /dev/null -s /bin/false $_icinga_user > /dev/null
    and this is exacly what I think is the very best solution to solve this issue. It's completely safe because all tricky file manipulation is done in a fakeroot environment and it's completely hassle free for the end-user.
    Heads up. Let's try get this idea upstream
    [1] http://sprunge.us/ISjA?sh
    [2] http://sprunge.us/PUPI?sh
    Last edited by foppe (2013-04-05 11:17:33)

  • How to set the User rights to use DAQ/IMAQ in WinXP as general(=limited) user

    When I install Software, written in LabVIEW (build an executable/installer), as administrator it works fine. But when I switch over to a user account with limited rights (we are talking about WinXP) it will not run and gives error messages. It happend to me at two almost the same computers, one with a DAQ-board, and one with an IMAQ-board. (At the computer with IMAQ1411 -> I also checked MAX -> errors/no access.) What to do?
    Attachments:
    DAQ_example.JPG ‏9 KB
    IMAQ_example.JPG ‏15 KB

    Hello,
    I investigated the issue further. To work around this problem you should add write permissions to the C:\Program Files\National Instruments folder. Be sure that all subfolders and files are awarded write permission. This should solve your problems. eventually you could break it up to one file which must be set to write permission but by setting the whole folder to write permission you solve this problem for many other drivers to so you would not run into this everytime you use different hardware.
    Best regards,
    RikP
    Application Engineering
    National Instruments
    Rik Prins, CLD
    Applications Engineering Specialist Northern Europe, National Instruments
    Please tip your answer providers with kudos.
    Any attached Code is provided As Is. It has not been tested or validated as a product, for use in a deployed application or system,
    or for use in hazardous environments. You assume all risks for use of the Code and use of the Code is subject
    to the Sample Code License Terms which can be found at: http://ni.com/samplecodelicense

  • KDM doesn't save previous user

    Hello!
    Since the upgrade to KDE 4.5 KDM doesn't show the previous logged in user at the login screen. Because of that, every time I have to type my username in the user field.
    I checked in KDE "System Settings" the configuration of KDM. The option "previous user" is set, but it doesn't work anyway.
    Has anybody the same problem?
    Thanks for help!
    Best regards,
    Flasher

    I think there already was a topic on this.
    Edit : Found this, but it seems nobody investigated it further.
    Last edited by karol (2010-09-04 18:47:30)

  • Problem adding some user or active directory group to sharepoint 2010 group

    Hi All
    I have a problem in a specific site collection in a web Application (but not on other site collection in that webApp).
    whenever I add a user like some system account to a sharepoint group or create a new sharepoint group or add an ActiveDirectory group to a sharepoint group I get an error and the user / group are not added :
    System.Runtime.InteropServices.COMException: [Work Email Address] - [Wrong Email Format]    at Microsoft.SharePoint.Library.SPRequestInternalClass.EnsureUserExists(String bstrUrl, String bstrLogin, String bstrEmail, String bstrName, String
    bstrNotes, String bstrMobilePhone, Int32 lFlags, Boolean bIsRole, Boolean bSendEmail, Boolean bForceAdd, Byte[]& ppsaSystemId, Boolean bImportDeleted, Int32& plUserId)     at Microsoft.SharePoint.Library.SPRequest.EnsureUserExists(String
    bstrUrl, String bstrLogin, String bstrEmail, String bstrName, String bstrNotes, String bstrMobilePhone, Int32 lFlags, Boolean bIsRole, Boolean bSendEmail, Boolean bForceAdd, Byte[]& ppsaSystemId, Boolean bImportDeleted, Int32& plUserId)
    when I add a regular user - all goes well.
    10x for any help
    Shlomy

    Hi Shlomy,
    i was thinking, perhaps there is an application that use this checking method on your specific site collection, and perhaps it is using a hard-coded command to request it, but seems it got some issue.
    as the other site collections, may not have the issue, so perhaps other site collections don't have this application, and you may check that as lead investigation process.
    you may try to capture fiddler tool, it may come in handy on tracing the http requests.
    http://fiddler2.com/
    usually when i trace the application, i would like to create new site, and add the webpart or application one by one, then i may know which application/webpart that have the issue.
    as other regular user may not have the issue, perhaps its because system account is by design to not have an email address properties, so when the application/webpart request for it, it become failure.
    Regards,
    Aries
    Microsoft Online Community Support
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • IPC Pricing with AP 7.00 Database Access/Call function module user-exit

    Hi experts,
    we are running SAP ECO on SAP ECC 6.0 with IPC Pricing AP 7.00 running in the VMC.
    I'm facing a new requirement. In an user-exit for requirements the access to the ABAP database is needed.
    (I know that the SAP recommendation is, don't have access to database. But we need this functionality)
    In ABAP it looks like:
    select single * from  a590
          into     LH_674_a590
          where    kappl  = 'V'
          and      kschl  = 'ZSPR'
          and      kunnr  = komk-kunnr
          and      matnr  = komp-matnr
          and      datbi  >= komk-prsdt
          and      datab  =< komk-prsdt.
    Is there a possibility to implement the same SELECT in the Java-User-Exit?
    Is there maybe the alternative to call a function module instead?
    The database exits on the same application server on which the VMC runs.
    If there is a possiblity can anyone provide me with sample coding or give an advice where to find samle coding?
    I would prefer to call a functions module.
    Thanks in adcance
    Karl-Wilhelm

    Hi Shanto & Sumit,
    Thanks for the inputs.
    as per my understanding of the log
    java.lang.IncompatibleClassChangeError: com.sap.leasing.pricing.tools.LeasingPricingTools: method getPricingConditionByConditionTypeName(Lcom/sap/spe/pricing/transactiondata/userexit/IPricingItemUserExit;Ljava/lang/String;)Lcom/sap/spe/pricing/transa ctiondata/IPricingCondition; used to be stati
    error is thrown by the SAP standard user exit and because of which execution is failing in customer user exits and surprisingly we have not made any changes in both of them.
    this was working earlier before upload.could this be because of the jar packaging.
    how i can download the standard user exit com.sap.leasing.pricing.tools.LeasingPricingTools from crm
    for further investigation.
    Thanks,
    Siddharth

  • How can I create template documents for non-InDesign users to edit the text of later?

    I'm looking to produce a small system for people within my company to edit and print labels as needed that comply with our internal design standards. I would like to use InDesign to produce a few templates for labels that people could then edit one or two fields later on, things like item name and ID number. I'm not averse to producing a small application in XCode that users can start up, enter their data and it saves the printer-ready label sheet to their desktop. I started out using Acrobat Pro, but I'm running into trouble embedding fonts for use in form fields, centering text, and outputting a filled-in pdf for print use, and not a form that submits info to an email or server. If InDesign is the wrong tool for the job of setting up a template like this, please feel free to suggest another route.

    I would direct you to the Acrobat forums, personally. You can enable rich-text formatting of Acrobat form fields from within Acrobat Pro, and also IIRC embed fonts for use in form fields. If you can spec out what you mean by "fine detail that we'd need" then we, or someone over at the Acrobat forums, can tell you whether or not rich text in Acrobat forms will work for you. I suggest this to you because centering text for Acrobat form fields is dead easy, so I suspect you've not investigated the tools available in Acrobat after you've exported the PDF from InDesign.
    Post-export PDF data merge sounds like, I dunno, variable-data printing? which doesn't sound like it would fit your case.

  • How many users are still experiencing frequent freezes on the new iMac

    I've been reading about the new iMac and have seen that many people have a problem with it freezing way too often.
    I'm wondering if this has been resolved or is this issue still going on?
    I'm quiet keen on getting an iMac, 24" but really am starting to get a bit worried about the freezing. That is a big reason why I would be leaving Windows and so I wouldn't want to spend the money to have the same problems again.

    Hey there,
    I personally have bought a new 24'' model a week ago and I do have the freezing problem, too (as stated here: http://discussions.apple.com/thread.jspa?threadID=1533430&tstart=15). But as far as I have been investigating the problem is related only to nVidea Graphics Cards. So if you're planing to get a Radeon Version Model (HD 2600) I think you're not going to run into much problems (but I might still be wrong). Taking the 8800 GS Option you might have the same problems that I have. Since there is an awful lot of users I think (or better pray) that this a driver problem that can be solved by a simple software update (indeed I already read of some users with 10.5.3 (beta) who said that the problem would be fixed).
    The be on the totally save side, I would wait until 10.5.3 (or a seperate graphic update) and then ask your question again.
    scurra

  • Is it possible to have a remote user on your iphone if you never set on up?

    My Iphone over the last couple of months has been acting very weird- I can not turn it off, my battery dies in 2 hours, it switches screens on me in the middle of me doing something.
    i have both "user processes and root user processes running all of the time
    i have never set up a root user
    I live with my boyfriend who has a mac - ipad and iphone- we use the same wireless network
    He has vuze and bit torrent which both i cant seen to run properly as the way they are safed or locked i can not access the files - he also has vmware fusion- again i am unable to run it -
    I was told by a friend to turn on my data and watch it to see which programs or applications that I have could be possibly malfunctioning- since then I have notices in my data the following:
    there are ports on my connections  which i have looked up and are all associated with hacking - 5353-5433-6401-5223--80- so many more I cant bare to look through all the data I have saved- I am not technology savy - the whole process of trying to figure out if this is true or even possible is emotionally and mentally draining-
    in my data there are key logs some short some long- some private some public?
    key logs
    which have information such as -
    encodin=UTF-8"?><DOCTYPEplist PUBLIC"-aplle//dtdplist 1.0//EN
    key com.apple OTAcrashcopier.successfulSubmissionTime<\key>
    array
    after multiple list with temperature 1 through 8- which each have a list
    <real>a number<real>
    it says key com.apple.springboard.thermallevels key array
    <key> adlogcreation date</key>
    <key>metadata</key>
    <dict>
    <key>ADuserIntefaceLanguage<key/>
    <string> en </string>
    <key> adusersetregionformat<key/>
    <stiring> US </string>
    <dict/>
    then a list of
    <Key>ad scalars<key/>
    <dict>
    <key/> appActivationCount.com.apple.ApStore<key>
    integer 1 interger
    and it then does that for each one of my applications including
    count maps
    mobilesms
    preference
    mobilemail
    mobilephone
    mobilesafari
    key appbackgroundactive time
    integer 0 interger
    and goes through a list of keys associated with again each of my apps
    and so on and so on
    another key log-
    7deviceid- a bunch of letters and numbers
    then
    isAnonymous:True
    deviceConfigID:152
    trigertime: numbers
    trigger ID-655363
    profileld:152998
    investigation ID: 0
    location udatesession
    timestamp:numbers
    timestampend:numbers
    desired accuracy:-1
    cellavilable:true
    wifiavailable:true
    passcodeLocked:false
    airplanemode: false
    ttff:0
    ttffGPS:0
    accessoryused:false
    reachability: 1
    power : true
    there are bunch of key logs all different
    system data logs with the following
    JS:its.sf6.Bootstrap.init:initialize
    JS:its.defer.bootstrap._renderpage component render complete
    I have in data reports and connection the words :
    local remote peer 
    Hash
    my external IP changes constantly even at home -
    ROOT usr- (never mad one)
    keybagd running on my root user processes- PID 1455 PPID 1 priority : 17
    sandboxd- PID 1452 PPID 1
    filecoordination - PID 103 PPID 1
    networkd?privile PID 72 PPID 1
    Syslogd PID 18 PPID 1
    usereventagent PID 13 PPID 1
    kernal_task PID 0 PPID )
    launchd PID 1 PPID 0
    plenty more
    in routing tables internet (10)
    destination :127   gateway:127.0.0.1
    destination:192.168.1.1  gateway:0:18:39:7c:46:d9
    destination:default
    gateway - 192.186.1.1
    gateway pdp_ip0
    internet(6) which will have about 150 destinations and gateways listed at once sometimes -
    destinations can be fe80::f2dc:e2ff:fe20:e5e7%en0 flag- UHLWLi gateway f0:dc_e2:20:e5:e7 (these are always changing ) sometimes they say link7  sometimes fe80::1%Io0 or     98:d6:bb:751a:f3     or   b8:17:c2:28:d6:90   or 4c:b1:99e8:26:21  linl#1    0:26:8:a2:8:2f    c:77:1a:a5:4:2f    6c:c2:6d:b0:21:c2
    connections on my phone: I have the following categories-
    in each one the number of connections constantly changes - tcp4 running the most -
    udp6 and udp4 mostly look as typed below but occastionally if i check at the right time - there are multiple- and rarly have the remote port
    icmp66 - even more rare that i catch that
    never port numbers
    These change even while i have close all apps- and am doing absolutely nothing with my phone
    tcp4
    remote user 17.172.232.133.442
    remote user 173.194.74.121:80 -
    remote user- 17.172.232.166 : 5225
    udp4- local not list - *;*
    remote *:*
    hostname: n/a
    local: *:5353
    remote: *:*
    hostname: N/A
    udp6
    local *:5353
    remote *:*
    hostname- N/A
    local: *:55543
    remote:*:0
    icmp66 local *:0 and remote *:0
    with hostname N/A
    data logs -
    localpeer ID: mobile. 1FDC29D7-2B67-5231-9375-3BDC30E405F, store name:userdictionary, modelversionhash: SAIQVUhF7208e6_gvZx_zdKx1UAzKGem3HO2pLKjgY=ubiquityrootlocation: pfubiquitylocation: 0x1ed87c50 mobile documents/com-apple[textinput/dictionaries
    springboard
    bbbehavioroverride :transition date should be after provided date
    searrchd
    indexed all records
    searchd
    finished getting all applications 
    remote hostenames from akamaitechonlogies
    so much more crap but im not sure what would be more useful to get my answer- i know some of this suff is totally normal from all the research i did but i also found a lot which i am very uncomfortable- i have updated my phone and everything - it continues

    I have the same problem
    timestamp: 1357891261335
    crashReporterKey: "1ef5cea8811e9c5df888052b1c037fb9ed617261"
    isAnonymous: true
    deviceConfigId: 190
    investigationId: 0
    model: "iPhone4,1"
    softwareBuild: "10A523"
    firmwareVersion: "iBoot-1537.4.21"
    basebandVersion: "3.0.04"
    buildtype: "User"
    metriclogs {
      triggerTime: 1357915884434
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357915884256
        timestampEnd: 1357915884389
        desiredAccuracy: 1000
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: -1
        bundleid: "/System/Library/PrivateFrameworks/Weather.framework"
        achievedAccuracy: 1414
        achievedSpeed: -1
        accessoryUsed: false
        reachability: 1
        powered: false
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357917095081
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357917095076
        timestampEnd: 1357917095077
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: -1
        ttffGps: -1
        bundleid: "com.aol.mapquest"
        achievedAccuracy: -1
        achievedSpeed: -1
        accessoryUsed: false
        reachability: 1
        powered: false
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357917208421
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357917095139
        timestampEnd: 1357917208416
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 12
        bundleid: "com.aol.mapquest"
        achievedAccuracy: 5
        achievedSpeed: 21
        accessoryUsed: false
        reachability: 1
        powered: false
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357917208442
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357917096642
        timestampEnd: 1357917208440
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 10
        bundleid: "com.aol.mapquest"
        achievedAccuracy: 5
        achievedSpeed: 21
        accessoryUsed: false
        reachability: 1
        powered: false
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357917368117
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357917236131
        timestampEnd: 1357917368116
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 3
        bundleid: "com.aol.mapquest"
        achievedAccuracy: 5
        achievedSpeed: 27
        accessoryUsed: false
        reachability: 1
        powered: false
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357917374150
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357917368165
        timestampEnd: 1357917374146
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 0
        bundleid: "com.aol.mapquest"
        achievedAccuracy: 5
        achievedSpeed: 24
        accessoryUsed: false
        reachability: 1
        powered: false
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357917388088
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357917374195
        timestampEnd: 1357917388085
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 0
        bundleid: "com.aol.mapquest"
        achievedAccuracy: 5
        achievedSpeed: 24
        accessoryUsed: false
        reachability: 1
        powered: false
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357917388170
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357917388137
        timestampEnd: 1357917388161
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 0
        bundleid: "com.aol.mapquest"
        achievedAccuracy: 30
        achievedSpeed: 19
        accessoryUsed: false
        reachability: 1
        powered: false
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357918270570
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357917388222
        timestampEnd: 1357918270558
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 0
        bundleid: "com.aol.mapquest"
        achievedAccuracy: 5
        achievedSpeed: 31
        accessoryUsed: false
        reachability: 1
        powered: false
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357918271710
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357918270579
        timestampEnd: 1357918271708
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 0
        bundleid: "com.aol.mapquest"
        achievedAccuracy: 5
        achievedSpeed: 8
        accessoryUsed: false
        reachability: 1
        powered: false
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357918272773
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357918272754
        timestampEnd: 1357918272766
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 0
        bundleid: "com.aol.mapquest"
        achievedAccuracy: 5
        achievedSpeed: 8
        accessoryUsed: false
        reachability: 1
        powered: false
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357918285070
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357918270583
        timestampEnd: 1357918285064
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 3
        bundleid: "com.aol.mapquest"
        achievedAccuracy: 5
        achievedSpeed: 31
        accessoryUsed: false
        reachability: 1
        powered: false
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357919898344
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357919898106
        timestampEnd: 1357919898327
        desiredAccuracy: 1000
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: -1
        bundleid: "/System/Library/PrivateFrameworks/Weather.framework"
        achievedAccuracy: 1144
        achievedSpeed: -1
        accessoryUsed: false
        reachability: 1
        powered: false
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357921215463
      triggerId: 520198
      profileId: 190050
      iMessageDeliveredMessageHotship {
        timestamp: 1357920000000
        deliveryDuration: 1
    metriclogs {
      triggerTime: 1357922950230
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357922945052
        timestampEnd: 1357922950193
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 3
        magnitudeMin: 619
        magnitudeMax: 626
    metriclogs {
      triggerTime: 1357922955147
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357922950840
        timestampEnd: 1357922955137
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 3
        magnitudeMin: 615
        magnitudeMax: 624
    metriclogs {
      triggerTime: 1357923211748
      triggerId: 655362
      profileId: 190007
      locationServicesApproval {
        timestamp: 1357923211741
        bundleid: "com.apple.locationd"
        approved: false
        bundleidApproved: "com.trulia.Trulia"
    metriclogs {
      triggerTime: 1357924092226
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357924092213
        timestampEnd: 1357924092213
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: -1
        ttffGps: -1
        bundleid: "com.aol.mapquest"
        achievedAccuracy: -1
        achievedSpeed: -1
        accessoryUsed: false
        reachability: 1
        powered: false
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357924120195
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357924120149
        timestampEnd: 1357924120181
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 0
        bundleid: "com.aol.mapquest"
        achievedAccuracy: 5
        achievedSpeed: 0
        accessoryUsed: false
        reachability: 1
        powered: false
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357924123019
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357924120208
        timestampEnd: 1357924123015
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 0
        bundleid: "com.aol.mapquest"
        achievedAccuracy: 5
        achievedSpeed: 0
        accessoryUsed: false
        reachability: 1
        powered: false
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357924185292
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357924123064
        timestampEnd: 1357924185289
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 0
        bundleid: "com.aol.mapquest"
        achievedAccuracy: 5
        achievedSpeed: 0
        accessoryUsed: false
        reachability: 1
        powered: false
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357924185319
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357924185315
        timestampEnd: 1357924185316
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: -1
        ttffGps: -1
        bundleid: "com.aol.mapquest"
        achievedAccuracy: -1
        achievedSpeed: -1
        accessoryUsed: false
        reachability: 1
        powered: false
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357924185348
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357924185344
        timestampEnd: 1357924185346
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: -1
        ttffGps: -1
        bundleid: "com.aol.mapquest"
        achievedAccuracy: -1
        achievedSpeed: -1
        accessoryUsed: false
        reachability: 1
        powered: false
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357924185384
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357924185372
        timestampEnd: 1357924185380
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 0
        bundleid: "com.aol.mapquest"
        achievedAccuracy: 5
        achievedSpeed: 0
        accessoryUsed: false
        reachability: 1
        powered: false
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357924199834
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357924092466
        timestampEnd: 1357924199832
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 2
        bundleid: "com.aol.mapquest"
        achievedAccuracy: 5
        achievedSpeed: 0
        accessoryUsed: false
        reachability: 1
        powered: false
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357924245444
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357924185401
        timestampEnd: 1357924245443
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 0
        bundleid: "com.aol.mapquest"
        achievedAccuracy: 5
        achievedSpeed: 0
        accessoryUsed: false
        reachability: 1
        powered: false
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357924245727
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357924245561
        timestampEnd: 1357924245726
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 0
        bundleid: "com.aol.mapquest"
        achievedAccuracy: 5
        achievedSpeed: 0
        accessoryUsed: false
        reachability: 1
        powered: false
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357924307986
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357924245737
        timestampEnd: 1357924307959
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 0
        bundleid: "com.aol.mapquest"
        achievedAccuracy: 5
        achievedSpeed: 0
        accessoryUsed: false
        reachability: 1
        powered: false
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357924308153
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357924308004
        timestampEnd: 1357924308152
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 0
        bundleid: "com.aol.mapquest"
        achievedAccuracy: 5
        achievedSpeed: 0
        accessoryUsed: false
        reachability: 1
        powered: false
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357924416953
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357924308205
        timestampEnd: 1357924416924
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 0
        bundleid: "com.aol.mapquest"
        achievedAccuracy: 5
        achievedSpeed: 0
        accessoryUsed: false
        reachability: 1
        powered: false
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357924457238
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357924417039
        timestampEnd: 1357924457228
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 0
        bundleid: "com.aol.mapquest"
        achievedAccuracy: 5
        achievedSpeed: 0
        accessoryUsed: false
        reachability: 1
        powered: false
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357924479313
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357924457354
        timestampEnd: 1357924479311
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 0
        bundleid: "com.aol.mapquest"
        achievedAccuracy: 5
        achievedSpeed: 2
        accessoryUsed: false
        reachability: 1
        powered: false
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357924681802
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357924680161
        timestampEnd: 1357924681765
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 3
        magnitudeMin: 589
        magnitudeMax: 596
    metriclogs {
      triggerTime: 1357925433925
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357924479408
        timestampEnd: 1357925433904
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 0
        bundleid: "com.aol.mapquest"
        achievedAccuracy: 5
        achievedSpeed: 1
        accessoryUsed: false
        reachability: 1
        powered: false
        autoStopped: true
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357925928444
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357925915836
        timestampEnd: 1357925928410
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 2
        bundleid: "com.apple.mobilesafari"
        achievedAccuracy: 5
        achievedSpeed: 12
        accessoryUsed: false
        reachability: 1
        powered: true
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357927849359
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357927849209
        timestampEnd: 1357927849356
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: -1
        ttffGps: -1
        bundleid: "com.apple.Maps"
        achievedAccuracy: -1
        achievedSpeed: -1
        accessoryUsed: false
        reachability: 1
        powered: false
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357927862825
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357927862666
        timestampEnd: 1357927862818
        desiredAccuracy: 1000
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 0
        bundleid: "/System/Library/PrivateFrameworks/Weather.framework"
        achievedAccuracy: 5
        achievedSpeed: 0
        accessoryUsed: false
        reachability: 1
        powered: false
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357927951887
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357927870225
        timestampEnd: 1357927951885
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 0
        bundleid: "com.apple.Maps"
        achievedAccuracy: 5
        achievedSpeed: 0
        accessoryUsed: false
        reachability: 1
        powered: false
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357928105500
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357928092945
        timestampEnd: 1357928105496
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 4
        bundleid: "com.apple.Maps"
        achievedAccuracy: 5
        achievedSpeed: 0
        accessoryUsed: false
        reachability: 1
        powered: false
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357928962757
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357928681479
        timestampEnd: 1357928962733
        desiredAccuracy: -2
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 3
        bundleid: "com.apple.Maps"
        achievedAccuracy: 5
        achievedSpeed: 15
        accessoryUsed: false
        reachability: 1
        powered: false
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357929889244
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357929163524
        timestampEnd: 1357929889200
        desiredAccuracy: -2
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 1
        bundleid: "com.apple.Maps"
        achievedAccuracy: 5
        achievedSpeed: 22
        accessoryUsed: false
        reachability: 1
        powered: false
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357930547666
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357930543524
        timestampEnd: 1357930547665
        desiredAccuracy: -2
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 3
        bundleid: "com.apple.Maps"
        achievedAccuracy: 5
        achievedSpeed: 2
        accessoryUsed: false
        reachability: 1
        powered: true
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357931495898
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357931136061
        timestampEnd: 1357931495786
        desiredAccuracy: -2
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 2
        bundleid: "com.apple.Maps"
        achievedAccuracy: 5
        achievedSpeed: 18
        accessoryUsed: false
        reachability: 1
        powered: true
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357932336558
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357932331931
        timestampEnd: 1357932336548
        desiredAccuracy: -2
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 2
        bundleid: "com.apple.Maps"
        achievedAccuracy: 5
        achievedSpeed: 18
        accessoryUsed: false
        reachability: 1
        powered: true
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357934177202
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357934174674
        timestampEnd: 1357934177195
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: -1
        bundleid: "com.apple.mobilesafari"
        achievedAccuracy: 1060
        achievedSpeed: -1
        accessoryUsed: false
        reachability: 1
        powered: false
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357934186594
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357934184708
        timestampEnd: 1357934186593
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 0
        bundleid: "com.apple.mobilesafari"
        achievedAccuracy: 30
        achievedSpeed: 0
        accessoryUsed: false
        reachability: 1
        powered: false
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357934248245
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357934248244
        timestampEnd: 1357934248245
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: -1
        ttffGps: -1
        bundleid: "com.apple.mobilesafari"
        achievedAccuracy: -1
        achievedSpeed: -1
        accessoryUsed: false
        reachability: 1
        powered: false
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357936168522
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357936165578
        timestampEnd: 1357936168503
        desiredAccuracy: -2
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: -1
        bundleid: "com.apple.Maps"
        achievedAccuracy: 583
        achievedSpeed: -1
        accessoryUsed: false
        reachability: 1
        powered: false
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357936594397
      triggerId: 520198
      profileId: 190049
      pushReceivedHotship {
        timestamp: 1357923600000
        connectionType: 1
        linkQuality: 100
        receiveOffset: 0
        payloadSize: 505
        isFromStorage: 0
    metriclogs {
      triggerTime: 1357939255970
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357938955882
        timestampEnd: 1357939255927
        uncalibrations: 0
        bundleid: "com.apple.camera"
        achievedCalibration: 5
        magnitudeMin: 543
        magnitudeMax: 636
    metriclogs {
      triggerTime: 1357952376025
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357952376011
        timestampEnd: 1357952376014
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: -1
        ttffGps: -1
        bundleid: "com.aol.mapquest"
        achievedAccuracy: -1
        achievedSpeed: -1
        accessoryUsed: false
        reachability: 1
        powered: true
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357952405801
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357952376062
        timestampEnd: 1357952405800
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 0
        bundleid: "com.aol.mapquest"
        achievedAccuracy: 5
        achievedSpeed: 5
        accessoryUsed: false
        reachability: 1
        powered: true
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357952424622
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357952405879
        timestampEnd: 1357952424620
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 0
        bundleid: "com.aol.mapquest"
        achievedAccuracy: 5
        achievedSpeed: 7
        accessoryUsed: false
        reachability: 1
        powered: true
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357952432533
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357952424723
        timestampEnd: 1357952432533
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 0
        bundleid: "com.aol.mapquest"
        achievedAccuracy: 5
        achievedSpeed: 0
        accessoryUsed: false
        reachability: 1
        powered: true
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357952558077
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357952432587
        timestampEnd: 1357952558076
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 0
        bundleid: "com.aol.mapquest"
        achievedAccuracy: 5
        achievedSpeed: 5
        accessoryUsed: false
        reachability: 1
        powered: true
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357953139952
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357952558170
        timestampEnd: 1357953139950
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 0
        bundleid: "com.aol.mapquest"
        achievedAccuracy: 5
        achievedSpeed: 19
        accessoryUsed: false
        reachability: 1
        powered: true
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357953206954
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357953139958
        timestampEnd: 1357953206952
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 0
        bundleid: "com.aol.mapquest"
        achievedAccuracy: 5
        achievedSpeed: 5
        accessoryUsed: false
        reachability: 1
        powered: true
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357953212425
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357953207033
        timestampEnd: 1357953212422
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 0
        bundleid: "com.aol.mapquest"
        achievedAccuracy: 5
        achievedSpeed: 3
        accessoryUsed: false
        reachability: 1
        powered: true
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357953213363
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357953213342
        timestampEnd: 1357953213359
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 0
        bundleid: "com.aol.mapquest"
        achievedAccuracy: 5
        achievedSpeed: 1
        accessoryUsed: false
        reachability: 1
        powered: true
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357953394824
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357953383295
        timestampEnd: 1357953394820
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 0
        bundleid: "com.aol.mapquest"
        achievedAccuracy: 5
        achievedSpeed: 9
        accessoryUsed: false
        reachability: 1
        powered: true
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357953537585
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357953534102
        timestampEnd: 1357953537579
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 0
        bundleid: "com.aol.mapquest"
        achievedAccuracy: 5
        achievedSpeed: 25
        accessoryUsed: false
        reachability: 1
        powered: true
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357959169342
      triggerId: 655363
      profileId: 190008
      locationUpdateSession {
        timestamp: 1357959124751
        timestampEnd: 1357959169290
        desiredAccuracy: -1
        cellAvailable: true
        wifiAvailable: false
        passcodeLocked: false
        airplaneMode: false
        ttff: 0
        ttffGps: 3
        bundleid: "com.apple.Maps"
        achievedAccuracy: 5
        achievedSpeed: 2
        accessoryUsed: false
        reachability: 1
        powered: false
        autoStopped: false
        deferredLocations: 0
        gpsCoexWifi: 0
        gpsCoexBt: 0
    metriclogs {
      triggerTime: 1357959358674
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959355220
        timestampEnd: 1357959358604
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 5
        magnitudeMin: 577
        magnitudeMax: 587
    metriclogs {
      triggerTime: 1357959368238
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959359049
        timestampEnd: 1357959368222
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 5
        magnitudeMin: 580
        magnitudeMax: 590
    metriclogs {
      triggerTime: 1357959371889
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959369291
        timestampEnd: 1357959371877
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 5
        magnitudeMin: 580
        magnitudeMax: 586
    metriclogs {
      triggerTime: 1357959374035
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959373483
        timestampEnd: 1357959374026
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 5
        magnitudeMin: 579
        magnitudeMax: 583
    metriclogs {
      triggerTime: 1357959376214
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959375526
        timestampEnd: 1357959376202
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 5
        magnitudeMin: 576
        magnitudeMax: 582
    metriclogs {
      triggerTime: 1357959380767
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959377509
        timestampEnd: 1357959380759
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 3
        magnitudeMin: 577
        magnitudeMax: 587
    metriclogs {
      triggerTime: 1357959385995
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959381281
        timestampEnd: 1357959385984
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 5
        magnitudeMin: 580
        magnitudeMax: 586
    metriclogs {
      triggerTime: 1357959391780
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959386610
        timestampEnd: 1357959391766
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 5
        magnitudeMin: 580
        magnitudeMax: 586
    metriclogs {
      triggerTime: 1357959393763
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959392823
        timestampEnd: 1357959393741
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 5
        magnitudeMin: 578
        magnitudeMax: 584
    metriclogs {
      triggerTime: 1357959395345
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959394192
        timestampEnd: 1357959395333
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 0
        magnitudeMin: 578
        magnitudeMax: 584
    metriclogs {
      triggerTime: 1357959396323
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959395744
        timestampEnd: 1357959396311
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 5
        magnitudeMin: 578
        magnitudeMax: 583
    metriclogs {
      triggerTime: 1357959397264
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959396343
        timestampEnd: 1357959397253
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 5
        magnitudeMin: 579
        magnitudeMax: 584
    metriclogs {
      triggerTime: 1357959399785
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959397609
        timestampEnd: 1357959399769
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 5
        magnitudeMin: 579
        magnitudeMax: 584
    metriclogs {
      triggerTime: 1357959402867
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959400209
        timestampEnd: 1357959402850
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 5
        magnitudeMin: 580
        magnitudeMax: 593
    metriclogs {
      triggerTime: 1357959404846
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959403643
        timestampEnd: 1357959404832
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 5
        magnitudeMin: 580
        magnitudeMax: 586
    metriclogs {
      triggerTime: 1357959405577
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959405361
        timestampEnd: 1357959405561
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 0
        magnitudeMin: 581
        magnitudeMax: 587
    metriclogs {
      triggerTime: 1357959406366
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959406112
        timestampEnd: 1357959406352
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 0
        magnitudeMin: 583
        magnitudeMax: 586
    metriclogs {
      triggerTime: 1357959407473
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959406893
        timestampEnd: 1357959407461
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 0
        magnitudeMin: 580
        magnitudeMax: 584
    metriclogs {
      triggerTime: 1357959410031
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959407707
        timestampEnd: 1357959410017
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 5
        magnitudeMin: 580
        magnitudeMax: 586
    metriclogs {
      triggerTime: 1357959410990
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959410095
        timestampEnd: 1357959410976
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 5
        magnitudeMin: 581
        magnitudeMax: 584
    metriclogs {
      triggerTime: 1357959412076
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959411773
        timestampEnd: 1357959412065
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 0
        magnitudeMin: 579
        magnitudeMax: 583
    metriclogs {
      triggerTime: 1357959412637
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959412442
        timestampEnd: 1357959412625
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 0
        magnitudeMin: 581
        magnitudeMax: 584
    metriclogs {
      triggerTime: 1357959413785
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959413145
        timestampEnd: 1357959413773
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 0
        magnitudeMin: 581
        magnitudeMax: 585
    metriclogs {
      triggerTime: 1357959416065
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959413949
        timestampEnd: 1357959416056
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 5
        magnitudeMin: 578
        magnitudeMax: 587
    metriclogs {
      triggerTime: 1357959445993
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959445380
        timestampEnd: 1357959445978
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 0
        magnitudeMin: 586
        magnitudeMax: 591
    metriclogs {
      triggerTime: 1357959449933
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959447094
        timestampEnd: 1357959449919
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 3
        magnitudeMin: 580
        magnitudeMax: 586
    metriclogs {
      triggerTime: 1357959450684
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959450530
        timestampEnd: 1357959450673
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 0
        magnitudeMin: 580
        magnitudeMax: 584
    metriclogs {
      triggerTime: 1357959452186
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959451310
        timestampEnd: 1357959452173
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 5
        magnitudeMin: 580
        magnitudeMax: 585
    metriclogs {
      triggerTime: 1357959453841
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959453148
        timestampEnd: 1357959453830
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 0
        magnitudeMin: 580
        magnitudeMax: 584
    metriclogs {
      triggerTime: 1357959456849
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959454924
        timestampEnd: 1357959456840
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 5
        magnitudeMin: 581
        magnitudeMax: 590
    metriclogs {
      triggerTime: 1357959468809
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959468789
        timestampEnd: 1357959468796
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 0
        magnitudeMin: 2147483647
        magnitudeMax: -2147483648
    metriclogs {
      triggerTime: 1357959470127
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959468797
        timestampEnd: 1357959470115
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 3
        magnitudeMin: 583
        magnitudeMax: 592
    metriclogs {
      triggerTime: 1357959471035
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959470709
        timestampEnd: 1357959471024
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 0
        magnitudeMin: 584
        magnitudeMax: 587
    metriclogs {
      triggerTime: 1357959471548
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959471409
        timestampEnd: 1357959471534
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 0
        magnitudeMin: 582
        magnitudeMax: 586
    metriclogs {
      triggerTime: 1357959472178
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959472042
        timestampEnd: 1357959472163
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 0
        magnitudeMin: 584
        magnitudeMax: 586
    metriclogs {
      triggerTime: 1357959473790
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959472792
        timestampEnd: 1357959473777
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 3
        magnitudeMin: 582
        magnitudeMax: 590
    metriclogs {
      triggerTime: 1357959475662
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959475576
        timestampEnd: 1357959475648
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 0
        magnitudeMin: 582
        magnitudeMax: 584
    metriclogs {
      triggerTime: 1357959476845
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959476729
        timestampEnd: 1357959476829
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 0
        magnitudeMin: 583
        magnitudeMax: 585
    metriclogs {
      triggerTime: 1357959484335
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959477425
        timestampEnd: 1357959484320
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 5
        magnitudeMin: 580
        magnitudeMax: 597
    metriclogs {
      triggerTime: 1357959484714
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959484334
        timestampEnd: 1357959484705
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 0
        magnitudeMin: 578
        magnitudeMax: 582
    metriclogs {
      triggerTime: 1357959499472
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959496601
        timestampEnd: 1357959499459
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 5
        magnitudeMin: 585
        magnitudeMax: 592
    metriclogs {
      triggerTime: 1357959504098
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959499848
        timestampEnd: 1357959504084
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 3
        magnitudeMin: 585
        magnitudeMax: 595
    metriclogs {
      triggerTime: 1357959505720
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959504501
        timestampEnd: 1357959505702
        uncalibrations: 0
        bundleid: "com.apple.mobilesafari"
        achievedCalibration: 5
        magnitudeMin: 586
        magnitudeMax: 591
    metriclogs {
      triggerTime: 1357959509456
      triggerId: 655365
      profileId: 190010
      compassSession {
        timestamp: 1357959506752
        timestampEnd: 1357959509445
       

  • How to get the SharePoint user context available in custom federated search connector?

    Hi,
    I'm investigating the possibilities for developing a federated search connector for SharePoint 2013 Online. This should allow us to search a customer's database through our custom developed application (both on premise). We intend to develop
    an remote federated search connector (using OpenSearch protocol) and configure a result source in SharePoint for that connector.
    The problem I'm struggling with is that I want different search results from this ressult source based on the permissions of the user that is executing the search. The admin should find a lot because he has permissions on certain items in the custom
    application. The employee should find just a few because he has no permissions on certain items in the custom application. We developed the custom application ourselveds and the search in that application is taking permissions into account: it doesn't
    return results if a user doesn't have sufficient permissions. That part works just fine.
    However, to be able to use that, the remote federated search connector must be able to identify the user that is executing the search in SharePoint Online. So: how do I get the SharePoint user context in the remote federated search connector?
    I know I can configure the replacement token {User.Name} in the result source configuration, but that gives me the name of the user only. This is insufficient to get an identity, principal, token or whatever, that let's me log in into our custom
    application.
    I also know that in a provider hosted app, user context is passed through from SharePoint and is known within the remote app. But since result sources need fixed (or anonymous) credentials configuration for connecting to the remote federated search connector,
    all users will be using the same credentials. This makes me assume these credentials are for securing communication and cannot be used within the execution of the search within the remote federated search connector.
    At the moment, I'm stuck. Any help will be greatly appreciated.
    Cheers,
    Ruud.

    Hi,
    Per my knowledge, we cannot get the SharePoint user context available in custom federated search connector with other methods.
    Here is a similar thread for your reference:
    https://answers.atlassian.com/questions/263735/atlassian-sharepoint-connector-federated-search-authentication-and-authorization
    Thanks,
    Linda Li                
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Linda Li
    TechNet Community Support

  • Two users opened the same file at the same time with file on Win2K Server

    I just had a problem with a file that could not be saved. After a little investigation I discovered that two users had the same file open at the same time. This is with both users using InDesign CS2 and saving to a Windows 2000 Server. Any ideas how this even happened? The only thing I can think of is if they both opened the file at the exact same time but even that I doubt. I guess the more likely possibility is that the user on 10.5 (which we have had a lot of problems with, it's hard to tell how many of them are CS3 problems (yes CS3) and how many are Windows 2003 Server problems) had InDesign CS2 flake out and not tell her the file was open. Has anybody else seen this? The other user was using 10.4. Both computers have the most recent updates for the OS and for their various adobe products.

    I have videos on mov file and my quick time player does not play them.
    The MOV file container is the generic QT file container. Any audio and video data compatible with the computer system used to create the file can be placed in the MOV file container. Unfortunate, other systems cannot play the file unless they too are configured with the same components as those used to create the file. The normal procedure here is to use the Finder "Info" or alternative media play "Inspector" window to determine what codecs were used to create the original file and, if they are available for your Mac, install them on your system for playback use. Also be advised that some "legacy" codecs may require playback in the QT 7 Player for proper QT support.
    I opened with other players, there is no sound. Then I opened the same file on my windows 7, it plays perfectly with the sound and everything? What is the problem?
    This would indicate these players either access your QT codec component configuration which does not include the required codec or the app has its own built-in codec support which does not include the required audio codec but you Windows 7 media player is configured with the required codec support. This may incidate the use of a really old codecs that may or may not be available/supported on a Mac any longer.

  • Firefox is not prompting to save password for specific user on specific site. How can I correct this?

    I am using saved passwords feature. The site in question is a common webmail site. I have more than one account for this site. Usernames and passwords for each account were stored in Firefox 'Remember Passwords' feature. I unintentionally deleted one entry from the dropdown list that is displayed when I go to the site's login page. Now, when I log in to this account, Firefox will not prompt to save the password. If I display my saved passwords list, there are entries for the other accounts on this site, but none for the user account in question. The Saved Passwords 'Exceptions' list is empty. How can I get Firefox to re-prompt to save the password for this user on this site? (Note: When I speak of 'user', I am not referring to user account on the PC or a specific Firefox user profile.)

    I am using Avast free version. Today I removed the LAN cable out of the 24 port switching hub and plugged directly into the router port. Now the program runs fast when checking for emails. Looks like all the emails are showing up. I do have other computers plugged into the switching hub with no problems. The hub is brand new. My thinking is the cable connector might be to blame. I will try re-crimping the wires. As for now, things are running good. I will keep investigating. Thanks

  • All users of fibre cabinet experience dramatic slo...

    This is currently being investigated by Engineers but I thought I would ask if anyone had similar experience. The Engineer said it was as if the cabinet (or even further back) could not cope with the demand for data and once everyone was home from work the speeds drop to only 2mb from 65mb. He implied the system could not handle the load due to take up beyond expectation of fibre, though I would have thought the network would have been able to cope. It was fine until the cabinet got a lot of users.
    He later suggested it may be a cabinet only fault affecting all users but as it stands he doesnt know what the issue is exactly. This has been ongoing for a month.
    I wondered if anyone had a simlar experience, surley the fibre part of the network could handle the load?

    In what part of the UK?
    I know people in MK7 (Walnut Tree, Milton Keynes) who are on FTTP are having problems (I'm one of them) as per this thread:
    https://community.bt.com/t5/BT-Infinity-Speed-Connection/FTTP-Problems-0-86Mbps-down/td-p/1121858

  • My default font size is set at 18px. Is this the default default font size for all users of ff 3.6+?

    I was developing a site in ff when I noticed other browsers were rendering the font size smaller than in firefox. Upon investigation I discovered that my ff 3.6 default font was Adobe Caslon Pro Bold 18px.
    I have never deliberately set this. My understanding was that all browsers default default font size was 16px.
    Has ff default font size changed from 16px to 18px?

    You're welcome.
    You can also see preferences that have changed as bold (user set) values on the about:config page.<br />
    See http://kb.mozillazine.org/about%3Aconfig

Maybe you are looking for