How Does Jive Decide When to Send Emails to a Watched Thread?

subj.
(answer is likely going to be that jive sucks)
One of my threads was updated this morning. I received no e-mail update. I am watching said thread.
My email preference is:
Send watch emails: Immediately
All watch updates will be emailed to your email address: <snip>
It has only been a couple of hours since thread was updated, so it might be just my impatience, but it makes me wonder what other of my threads have been updated without a notification...
Edited by: trent on Jul 6, 2011 10:57 AM
Oddly, my watch list is only coming up with 14 threads - I think I would have more than 14 watches. The particular thread even says im watching it when i view it, but it's not in the watch list =/ .

trent wrote:
(answer is likely going to be that jive sucks)Geez. You're negative about Jives.
I like it. {noformat} ;-) {noformat}
A while ago I recall bits and pieces said the e-mail script being posted and discussed here. Might be worthwhile searching for that - using Google of course as it does a better and more flexible job than Jives's very own search function. Simply add the site:forums.oracle.com to your Google search strings to restrict the search to OTN forums. Those postings may shed some light on exactly how the e-mail feature works (or don''t work).
One of my threads was updated this morning. I received no e-mail update. I am watching said thread.My preference is for the old watches feature (highlighting changed threads since you've last read them) that became too CPU expensive and was disabled, and no watch e-mails at all....

Similar Messages

  • HT5071 How does Apple decide when a book - created in iBooks Author - is free versus when it is paid?

    I am considering creating a book made with iBooks Author but have a couple of unanswered questions. What determines how Apple chooses whether my book can make it into the ranks of being a paid book? In other words, I don't want to put a whole bunch of time and effort into creating a book that I want to sell, only to have Apple decide that the book can only be downloaded for free. Is there a way to guarantee that my book will be eligible to sell (as opposed to giving it away for free)? What are the requirements for creating a paid book in iBooks Author?

    There are no guarantees.
    I'm not sure, however, that if Apple decided it wasn't fit for publishing under a paid contract that they would then turn around and accept it as free, sorry. There are too many details involved and I'd think if you want it in the store you'd work to make it acceptable all around.
    See Apple - iTunes - Partner Programs - Book Publishers for publishing details.

  • How does Flex decide when to draw a scrollbar?

    First my problem...
    I have a tree whose data changes because I changed the contents of a custom object in the data provider's array collection. The scrollbar does not update itself when the tree expands beyond the view of the canvas. It doesn't update until I close the branch and then reopen it. Then, the scrollbar updates itself.
    What I've tried...
    So far, I figure that since the changes are occurring deep within the data provider, no Collection Event is getting dispatched. Since the structure is so..
    dataProvider = arrayCollection;
    arrayCollection[ 0 ] = parentNode : TreeNode;
    parentNode.children = ... // array collection of other TreeNodes
    So I've tried dispatching my own event when the addition of the nodes is through using the following...
    layerDirectoryArr.refresh(); // layerDirectory is the first child in the array collection in the dataProvider (parentNode)
    sidePanel.directoryTree.invalidateDisplayList();
    sidePanel.directoryTree.invalidateSize();
    layerDirectoryArr.dispatchEvent(new CollectionEvent(CollectionEventKind.UPDATE, false, false, CollectionEventKind.UPDATE, 0, 0, [layerDirectoryArr[0]]));
    I've also tried adding buttons to invalidateDisplayList(), invalidateSize() for the tree and neither work.
    More explanation on the code below..
    The data provider is an array collection of custom object that all have a "children" field (array collection) of the same custom objects. I have a Tree that is within a canvas. The Tree uses a custom renderer. The tree sits in the same position as a List. I use a "useTree" var to toggle the visibility, essentially to choose either the List or the Tree to be displayed within the Canvas. I set both of them at 0,0.
    <mx:Canvas width="100%"
                   id="hBox"
                   backgroundAlpha="0.7"
                   height="80%"
                   verticalScrollPolicy="off"
                   horizontalScrollPolicy="off"
                   backgroundColor="0x55FF66"
                   dataChange="validateNow()">
            <mx:List id="list"
                     width="100%"
                     height="100%"
                     labelField="name"
                     x="0"
                     y="0"
                     visible="{!useTree}"
                     backgroundAlpha="0.8"
                     itemRenderer="components.tree.CustomListItemRenderer"
                     creationComplete="listComplete(event)"
                     dataChange="validateNow()"/>
            <mx:Tree id="tree"
                     width="100%"
                     labelField="name"
                     showRoot="false"
                     visible="{useTree}"
                     backgroundAlpha="0.8"
                     x="0"
                     y="0"
                     creationComplete="treeComplete(event)"
                     dataProvider="{treeDataProvider}"
                     itemRenderer="{treeClass}"
                     valid="logTreeEvent(event)"
                     change="logTreeEvent(event)"
                     variableRowHeight="false">
            </mx:Tree>
        </mx:Canvas>

    If the Tree showed the new nodes, then notification is probably working.
    But showing new nodes may not force the tree to compute a new
    measuredHeight.  The container will check the measuredHeight and determine a
    desired height and show scrollbars if it doesn't fit.  If the container also
    has %height, it will not show scrollbars unless minHeight is set to a
    smaller number.

  • How does BerkeleyDB know when cached results from stat function are valid ?

    Something curious: I have a berkeley database about 2G in size and a program that (1) opens the database, not DB_RDONLY; (2) calls stat(), without DB_FAST_STAT; (3) calls sync(); (4) calls close().
    Running this program the first time takes a good amount of time in the stat() function - 20 minutes at least - and thrashes the disk all that time. So it's trawling the database to get record counts etc.
    Running the program again takes only a few seconds so clearly the database is caching those stats and knows they're up to date - makes sense.
    What's odd though is why the stats weren't known to be up to date on the first run. The database was actually copied from another box where the last thing to happen was a run of the same program. So it should have had up-to-date stats cached in it.
    It's as if the cached values are somehow invalidated by moving the database to another machine. Why would that happen ? Where are the cached stats held and how does berekelyDB decide when they're up to date ?

    I still cannot solve this problem, but I have some more observations:
    1) yes it is a JApplet, and yes, the data streaming is performed in a separate thread.
    2) Wireshark sniffing shows that data sent out by the PHP datasource on the server is sent immediately, and is not buffered (am using ob_start(), ob_flush() and flush() alls in the PHP script).
    3) On Windows Vista, using Internet Explorer or Firefox, there is a constant 30 second delay before the Applet returns from this line: InputStream is = url.openStream();
    4) After this 30 seconds, data appears in the Applet, but it can be seen also with java console debug prints that the data seems to be buffered. The newest data shown in the Applet is not the newest data sent to the client by the PHP datasource script.
    5) On a SUSE Linux client, the Applet works as it should, there is no delay time in showing the data.
    It appears as if there is on Windows a buffering of data which I do not wish to have and which does not occur on Linux. I need to find out how to get the URL openStream() call to return immediately allowing the initial data to be read and shown on the Applet. And I need to remove the buffering of data so that the data can be shown on the Applet when it arrives.
    Can anyone help? Why does this work on Linux but not on Windows, and what can I do, at best within the Java code, to get the Applet to work on Windows as it does on Linux?
    Thanks!
    Steve, Denmark

  • Why do text messages from my iPad appear to some people as if they came from my email address instead of my phone number? This does not happen when I send text messages from my iPhone.

    Why do text messages from my iPad appear to some people as if they came from my email address instead of my phone number? This does not happen when I send text messages from my iPhone.

    You need to link your iPhone number to Messages - and Facetime if you use it. For Messages go to Settings>Messages>Send and Receive at>You can be reached by iMessage at. If your phone number is showing there, select it as your Contact address. If it doesn't appear in there, take a look at the end of this article for help.
    iOS and OS X: Link your phone number and Apple ID for use with FaceTime and iMessage - Apple Support

  • When I send emails, my friends told me my name doesn't appear in the "from" column. How do I solve this problem?

    when I send emails, my friends told me my name doesn't appear in the "from" column. How do I solve this problem?

    Badunit, thanks for your reply. I just went into Mail/Preferences/Accounts, "full name" field is filled correctly with my name. This happens to only certain recipients, and not every emails. Sometimes my name shows and sometime it doesn't show. And this only started to occur recently.

  • How do I set a new account as default in safari when I send emails from a web page

    how do I set a new account as default in safari when I send emails from a web page
    thanks in advance

    In the Composing pane of Mail's preferences window, look for the pop-up menu labeled "Send new messages from." Select the desired account there.
    Note, though, that this won't change the behavior when replying to a message... in that case, the reply will be sent from the account that received the message, unless you specify differently at that time.

  • Ipad: how does mail decide what the "reply to" address is?

    I have a weird problem.  Any mail I send from my iPad has the "wrong" reply-to address.  That is, when I send email from one account, it applies a different account address in the "from" field.
    Here is the problem (all addresses are fake)
    I have two email accounts on my ipad:  [email protected],  [email protected]  I specify "[email protected]" as the Default Account in Mail, Contacts, Calendars
    I also have an old account ([email protected]).  This account was my AppleID, etc but I want to get away from that account and move completely to gmail.  Again [email protected] is NOT registered (installed?  what is the term) on the iPad.
    Now, I would expect that when I send email, that "[email protected]" would be the "From:" address and that this would also be the reply-to address.
    Indeed, when I make a New Message, the "From:" field DOES have [email protected]  I can also tap the From: field and it gives my two choices: [email protected] and [email protected]  However, when it arrives at the recipient, it says "From [email protected]".
    Here is the header in Thunderbird when I send a test email from iPad to [email protected] (when I receive it), the header is really strange (again, edited to obfuscate my email):
    From: Joe Blow <[email protected]>
    Mime-Version: 1.0 (1.0)
    Reply-To: [email protected]
    Date: Tue, 12 Feb 2013 13:57:10 -0600
    Delivered-To: [email protected]
    Message-ID: <-2305465076252779989@unknownmsgid>
    Subject: test of return address
    To: Joe Blow <[email protected]>
    Content-Type: text/plain; charset=ISO-8859-1
    Sent from my iPad
    Now this is a strange header.  It is missing all kinds of fields, (such as "Received:, Retur Path, etc) but it is clear that the iPad sen the mail with incorrect From and Reply-To fields.  I dont even have [email protected] as an account on the iPad.
    So the question is:  where did it get and how do I fix it?
    Any takers?
    BTW, this is with iOS 5.1 (why, because every time I try to update, it says "An error occurred".

    You don´t have to insert your e-mail adress in this field, if you don´t want to have the e-mail back to some other adress (that is the only purpose of this setting - just like in Outlook)
    The views I present are my OWN and not of any organisation I may belong too.

  • How does Mail decide which outgoing SMTP server to use?

    I have Mail setup with two accounts - one for home use and one for work.  Each has its own outgoing SMTP server.  My question: how does mail decide which outgoing server to use?  I don't want to mix work and home stuff.
    Specifically, what happens in these three scenarios?
    1) I compose a new mail.  Does it always use the first account's outgoing SMTP server or does Mail look at the recipient's domain and base its decision on that?
    2) I reply to a work email.  Is Mail smart enough to look at my domain or the sender's to know to use the work outgoing SMTP server?
    3) I reply to home email.  Is Mail smart enough to look at my domain or the sender's to know to use the home outgoing SMTP server?
    Any information is much appreciated.
    Tom

    Hi Juergen,
    Thanks for the suggestion - I had to "Customize" the viewable header to include the "From:" ("Von:") line to see who I was sending as.  As far as the "use this SMTP only" checkbox is concerned - they're checked on both my accounts - so I'm not sure how much of an impact that has.  To be honest, I thought this checkbox was meant to limit your outgoing mail (for that account) to this mail server only.  I thought that if it was not checked, Mail will try to send the mail via another SMTP server if the one for this account is not reachable.....after all, why else would Apple allow you to check both servers' "use this SMTP only" checkbox?
    But this is good enough for me - now I can see who i'ms ending as.
    Thanks,
    tom

  • I run DeviceDemo sample to send email, when click send email button after f

    I run DeviceDemo sample to send email, when click send email button after filling all fields, it took me to EverNote application, can not send email. does anyone has this kind experience? how to fix it?

    Hi,
    ADF Mobile cannot directly send emails as this is a security precaution of your mobile phone (imagine all applications could send mails without you confirming). Instead the send mail functionality launches the mail client you have configured and fill in the information you provided in the application. The mail function by the way is implemented through Cordova.
    Frank

  • TS3276 I need feedback for the following issue. When I send email from this 27 inch iMac, the computer adds a string of characters in vertical column that represents the QWERTY key board, all alpha numeric characters are included. Yahoo mail, issue only o

    Restating my issue / question...
    When I send email from this iMac, there is a string of characters assigned. The characters are all the "alpha numeric" characters on the QWERTY key board. This only occurs when email is sent from this iMac. The issue does not manifest when using any other lap top or computer.
    Hence, I have ruled out the issue is a yahoo mail matter.
    Again, I can access the Yahoo mail account form multiple devices and send email without unintended assignment of character strings, but when I send wmail using this iMac, the issue happens everytime.
    Characters are stacked verticaly in a column. It looks as if all characters (except function keys) are included in the string.
    Any ideas?
    GMc

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It won’t solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    Third-party system modifications are a common cause of usability problems. By a “system modification,” I mean software that affects the operation of other software — potentially for the worse. The following procedure will help identify which such modifications you've installed. Don’t be alarmed by the complexity of these instructions — they’re easy to carry out and won’t change anything on your Mac. 
    These steps are to be taken while booted in “normal” mode, not in safe mode. If you’re now running in safe mode, reboot as usual before continuing. 
    Below are instructions to enter some UNIX shell commands. The commands are harmless, but they must be entered exactly as given in order to work. If you have doubts about the safety of the procedure suggested here, search this site for other discussions in which it’s been followed without any report of ill effects. 
    Some of the commands will line-wrap or scroll in your browser, but each one is really just a single line, all of which must be selected. You can accomplish this easily by triple-clicking anywhere in the line. The whole line will highlight, and you can then copy it. The headings “Step 1” and so on are not part of the commands. 
    Note: If you have more than one user account, Step 2 must be taken as an administrator. Ordinarily that would be the user created automatically when you booted the system for the first time. The other steps should be taken as the user who has the problem, if different. Most personal Macs have only one user, and in that case this paragraph doesn’t apply. 
    Launch the Terminal application in any of the following ways: 
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.) 
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens. 
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid. 
    When you launch Terminal, a text window will open with a line already in it, ending either in a dollar sign (“$”) or a percent sign (“%”). If you get the percent sign, enter “sh” and press return. You should then get a new line ending in a dollar sign. 
    Step 1 
    Triple-click the line of text below to select it:
    kextstat -kl | awk '!/com\.apple/{printf "%s %s\n", $6, $7}' | open -f -a TextEdit 
    Copy the selected text to the Clipboard by pressing the key combination command-C. Then click anywhere in the Terminal window and paste (command-V). A TextEdit window will open with the output of the command. Post the contents of that window, if any — the text, please, not a screenshot. You can then close the TextEdit window. The title of the window doesn't matter, and you don't need to post that. No typing is involved in this step.
    Step 2 
    Repeat with this line:
    { sudo launchctl list | sed 1d | awk '!/0x|com\.(apple|openssh|vix)|org\.(amav|apac|cups|isc|ntp|postf|x)/{print $3}'; sudo defaults read com.apple.loginwindow LoginHook; } | open -f -a TextEdit 
    This time you'll be prompted for your login password, which you do have to type. Nothing will be displayed when you type it. Type it carefully and then press return. You may get a one-time warning to be careful. Heed that warning, but don't post it. If you see a message that your username "is not in the sudoers file," then you're not logged in as an administrator. 
    Note: If you don’t have a login password, you’ll need to set one before taking this step. If that’s not possible, skip to the next step. 
    Step 3
    launchctl list | sed 1d | awk '!/0x|com\.apple|org\.(x|openbsd)/{print $3}' | open -f -a TextEdit 
    Step 4
    ls -1A /e*/mach* {,/}L*/{Ad,Compon,Ex,Fram,In,Keyb,La,Mail/Bu,P*P,Priv,Qu,Scripti,Servi,Spo,Sta}* L*/Fonts 2> /dev/null | open -f -a TextEdit  
    Important: If you formerly synchronized with a MobileMe account, your me.com email address may appear in the output of the above command. If so, anonymize it before posting. 
    Step 5
    osascript -e 'tell application "System Events" to get name of every login item' | open -f -a TextEdit 
    Remember, steps 1-5 are all copy-and-paste — no typing, except your password. Also remember to post the output. 
    You can then quit Terminal.

  • When i send email with 2 account 3G and wi-fi it take 15 minutes help

    when i send email with 2 account 3G and wi-fi it take 15 minutes help

    Welcome to Apple Support Communities.
    It's probably quite simple, and nothing to do with your Address Book group.
    It is a matter of 'junk mail' or 'spam' filtering on the recipient end, I think.
    1. Apparently not everyone in your Address Book group (12 of 15 apparently?) has your current email address among their 'permitted email addresses', so, your original email message ends up in their 'junk mail' or 'spam filter' or whatever it is called by their email provider. Some businesses and schools also filter incoming messages for subject, language, content, or by sender's address (one company I dealt with prohibited all incoming email from Hotmail, for example), so it could be filtered at that level. In that case, the recipient might have to specifically ask the IT department to add your email address to a 'permitted' list.
    2. When someone else in the group hits 'reply all', THEIR email address IS among the 'permitted email addresses' for everyone else, and they are in effect 'forwarding' your message from their email address, so the filtering affecting your email address does not affect their re-sending of your message.

  • When I send emails with photos from iPhoto recipients often tell me images are upside down.  What would cause that?

    When I send emails with photos from iPhoto recipients often tell me images are upside down.  What would cause that?

    Found this :
    https://discussions.apple.com/thread/3431867?start=0&tstart=0
    by doing this :
    http://www.google.com/search?q=images+are+upside+down+ios

  • Problem with Thunderbird email: When I send email using a mailing list, with my email included in the list, the message shows up in my Sent list and others rece

    Problem with Thunderbird email:
    When I send email using a mailing list, with my email included in the list, the message shows up in my Sent list and others receive it but it does not come to my email Inbox. The same problem occurs when I send the email to the mailing list addresses individually. When I send a simple test message to myself, I do receive it in my Inbox. Can you help me??
    Bob Greenman

    Are you using either cc or bcc? Is googlemail involved? Some email providers suppress cc's and bcc's to oneself since you will have a copy in your Sent folder.

  • How does Leopard decide which Space to present at startup?

    When starting up, Mac goes to Space 2. Would like it to go to Space 1. How does Mac decide which Space and how do I change it to Space 1? Thanks.

    Do you have an app that is assigned to Space 2 that is also in Login Items (starts automatically upon login)?
    If not... Maybe if you disabled Spaces, restarted at least once, and then enabled Spaces, it will go back to starting up on Space 1.
    If you have an app that you always open in Space 1, assign it to Space 1 and also put it in Login Items.

Maybe you are looking for

  • Out Of Memory Error : unable to create new native thread

    Hi Experts, The details are given below - 1. Sun Java System Application Server 7 2. Java 1.4.2_05 3. Solaris 9 (OS) 4. RAM 8 GB There are 3-4 applications deployed on this Sun Server 7. Some times we got "Out Of Memory" Error while displaying any js

  • Quicktime freezes everytime I open it. Windows don't close. How do I fix this?

    Quicktime freezes everytime I open it. Windows with previously watched videos keep opening. When I close them, and when the only one I wish to watch is left, it freezes and I have to force quit. A window of that video is then added to the many that o

  • Clip masking a group into an object.

    hello forumers. i have in a group about 10layers and i want to clip them all together into an object,but no luck yet. (i dont want to merge the layers and then clips mask,cos i need em seperate.) thank you.

  • Billing based on % of the project done

    Hi all! Let's see if you guys can help me out with some ideas here: I need the billing as follows: Every sales order comes from a project and generates a purchase order which account assignment category is "Project" (the same project that trigered th

  • Image preview problem

    I have Macbook Pro Retina with Mountain Lion preinstalled and I have installed the recent updated. My problem is with the image preview. Normally it works fine until I tryied to change the image too fast. Then the preview starts to act very strangely