I use the Lotus Notes C API ReplicateWithServerExt as shown below in my program:
REPLSERVSTATS retStats;
memset(&retStats, ‘\0’, sizeof(REPLSERVSTATS));
ReplicateWithServerExt(NULL, strServer.GetBuffer(0), REPL_OPTION_RCV_NOTES | REPL_OPTION_SEND_NOTES, 1, strLocal.GetBuffer(0), NULL, &retStats);
For a particular Lotus Notes 6.0 user not everything is being replicated. It’s as though I’m using the REPL_OPTION_ABSTRACT_SMRY option which says just to replicate the summary data and not the attachments.
How could my use of this API be overriden by some other setting? How can I change that setting to allow this?
When this user uses Lotus Notes to do the replication it copies everything. It works fine.
Thanks in advance for any ideas.