OpenERP v7 does not send internal messages - odoo

I have set up completely OpenERP v7 with both Social Network and Project modules.
I do create project and task with users assigned to team and/or follower, but users never receive any internal message about the project. The inbox of the users contains only the Welcome messages about OpenERP.
I need to set up OpenERP to send messages to Project Leader, Project Team and Project Follower, but I don’t find this configuration.
I’ve tried (with no success) to manage with Configuration > Technical > Email > Subtypes.
Thanks

when you create the project
depending on the kind of notifications you are following. You can select the kind of notification you want to receive using the checkboxes that are located below the "Follow" button:
and also go the related user and edit the email prferences and select All message
or follow this link fo rmore details
Followers, Internal messaging

Related

YouTrack notification about new issue

I want Youtrack to send email notification to all users in certain project when new issue with Critical priority is created. Is it possible?
Notifications in YouTrack are based on subscriptions, which consist of a saved search query and events that trigger the notification. So you need to create a saved search like Project: projectname Priority: Critical and subscribe needed users to this saved search (select the Issue created event).
Please also note that subscriptions are set up on a per-user basis, so it would be necessary to add subscriptions for each user separately (Users > username > Notifications > New subscription).

sharepoint registration change notification

I have a class registration set up in SharePoint 2013. Users are emailed when they register for a class. I want to create email notifications when the Start Date, Start Time or Location [fields] of the Session changes. I only want to email the users that have registered for said Session (between 1 and 400 people).
I should be able to handle this with an Alert or an Event, but can't figure it out. My SharePoint team is telling me that this is too difficult because "the columns are in Sessions [list] and not in Registrations [list view].
I've found a lot of information on general SharePoint alerts, but I can't find anything on sending notifications to a select group of users, based on another field.
You could create event receiver for the list and send email by SPUtility.SendEmail with dynamic users.
You could check sample code from here.
Create event receiver in SharePoint 2013.

Best way to notify external users when a specific catalog item is ordered?

I need to notify external people, non-ServiceNow users, when a specific Item is ordered.
I tried using the email notification using a condition. But somehow I wasn't able to work it out.
What would the the most efficient way to make this happen?
I can't refer to a specific item when I select the sc_req_item table as condition. So I probably need a small workaround?
You should be able to specify a specific Catalog Item, I tested this on Geneva and it worked.
Try something like the notification configuration below and put an order in for the Catalog Item you configured? If it doesn't work, can you post what you've put in for your notification?
You should see emails for these under one of these depending on your environment.
System Mailboxes > Outbound > Sent
System Mailboxes > Outbound > Outbox
Table: Requested Item [sc_req_item]
When to send
Inserted: Checked
Conditions
Item is Google Nexus 7 (Switch this to your Catalog Item)
Who will receive
Users
vendor1#example.com
vendor2#example.com
What it will contain
Email template: sc_req_item.itil.role
Have you tried creating a Workflow runscript activity in that particular Catalog Item to create an event to send notification to External users? You can pass the external email ID easily while calling the event for triggering the notification.

IOS implementation of simple messaging system (client/server) between clients

i've been looking around to find a simple library or a client/server sample code for implementing a messaging system between users of my IOS clients app and a REST server. I would need that each user has an incoming and sent messages view. This view would display the conversations grouped by user. For example, using a table view where each cell represent a thread between the 2 distinct users, selecting a user's conversation it would push a new view that would display all the messages between the two users.
I have to say that i didn't found much, this is a mix of libraries and front ends:
an XMPP objective-c library: https://github.com/robbiehanson/XMPPFramework, but i don't really want an IM behavior
Acani chat, https://github.com/acani/AcaniChat seems promising but waiting for the acani chat server, i could use the front end
another chat https://github.com/honcheng/iOS-nodechat
MailCore, an IMAP api for objective-c: https://github.com/mronge/mailcore . i would need to relay on a mail server, create emails for each user and ... too much!
too bad there isn't any iMessage API
dont want to send a SMS or an email
push notification it's not a must to start
maybe coding a simple REST service for publishing and retrieving messages to and from a user would be the best approach? i'm i missing something?
thanks!!

Email Synching into Custom App

How have people intergrated custom CRM type applications with email?
I have a Access 2003 front-end application with a SQL Server 2005 backend. One CRM
part of the application tracks the activity with the customer in a traffic
log table. Sometimes the salesstaff has communication with their customer
using email instead. What do people do to synch this up with an application?
I was thinking about creating a form to enter the initial message, so I
could save it into a table and then have the system generate a email, of
course, this doesn't handle the email communication after the initial email.
Thanks
What you need to do is setup your domain name with a free google apps account. Your sales staff can still use the clients of their choice, but since they are essentially using custom gmail accounts, every single email that they send and receive will be recorded in a nice and neat transactional format in the gmail interface. Since your sales staff is always online, they will always have access to every message they ever sent. If you want to have access to the emails, you can set it up that every single message that gets sent are automatically blind forwarded to your account. Filters can be set up to automatically tag and archive them, so you will not be overwhelmed, but you will still be able to search them. Google Apps will also give you a central contact directory similar to outlook/exchange.
Here are a few options for you:
Use web forms for all communications. When a message is sent out, the only thing it includes is a link back to the site. Responses are sent the same way.
Setup an email alias that your sales staff Cc's when they want their correspondence to be tracked. Your app would periodically read a POP mailbox, and record the traffic. Customers would have to remember to Cc the same email box for the traffic to be remembered.
Establish a single common email box, such as sales#domain.com. All outgoing mail is marked as being from that account, so all replies will go through it. To send mail, sales staff uses a web form. Messages are tagged with a key that associates them with a particular customer. Putting the key in the subject header usually works OK (that's how many support ticket management systems work, for example). Replies from customers keep the tag. Your app then reads an associated POP mailbox, parses out the keys, and stores the email accordingly.