search for: message_id

Displaying 20 results from an estimated 85 matches for "message_id".

2023 Jul 14
0
smb2_validate_sequence_number: bad message_id 2
...log messages on both DCs watching the RSAT station specific file log. This specific messages appears only when the delay happens. [2023/07/13 09:01:10.307842, 0] ../../source3/smbd/smb2_server.c:677(smb2_validate_sequence_number) smb2_validate_sequence_number: smb2_validate_sequence_number: bad message_id 2 (sequence id 2) (granted = 1, low = 1, range = 1) [2023/07/13 09:14:03.951134, 0] ../../source3/smbd/smb2_server.c:677(smb2_validate_sequence_number) smb2_validate_sequence_number: smb2_validate_sequence_number: bad message_id 2 (sequence id 2) (granted = 1, low = 1, range = 1) [2023/07/13 09:...
2018 Jun 20
2
Bad message_id occasionally when connecting a MacOS to a freebsd running 4.8.2
...alts or the Mac disconnects, and in the log I find these messages: Jun 20 13:00:00 orca smbd[6033]: [2018/06/20 13:00:00.856101, 0] ../source3/smbd/smb2_server.c:641(smb2_validate_sequence_number) Jun 20 13:00:00 orca smbd[6033]: smb2_validate_sequence_number: smb2_validate_sequence_number: bad message_id 4217 (sequence id 4287) (granted = 325, low = 3775, range = 512) Jun 20 13:00:33 orca smbd[38213]: [2018/06/20 13:00:33.713824, 0] ../source3/smbd/smb2_server.c:641(smb2_validate_sequence_number) Jun 20 13:00:33 orca smbd[38213]: smb2_validate_sequence_number: smb2_validate_sequence_number: bad...
2023 Jul 21
2
Bug 15346 - 2-3min delays at reconnect with smb2_validate_sequence_number: bad message_id 2 still on new 4.17.10
Hello to all, I can confirm, that the bug, smb2_validate_sequence_number: Jul 21 08:22:44 dom2 smbd[1908004]: smb2_validate_sequence_number: smb2_validate_sequence_number: bad message_id 2 (sequence id 2) (granted = 1, low = 1, range = 1) Jul 21 09:24:39 dom2 smbd[1908332]: [2023/07/21 09:24:39.140658, 0] ../../source3/smbd/smb2_server.c:677(smb2_validate_sequence_number) Jul 21 09:24:39 dom2 smbd[1908332]: smb2_validate_sequence_number: smb2_validate_sequence_number: bad messag...
2018 Jun 20
0
Bad message_id occasionally when connecting a MacOS to a freebsd running 4.8.2
...disconnects, and in the log I find these messages: > > Jun 20 13:00:00 orca smbd[6033]: [2018/06/20 13:00:00.856101, 0] ../source3/smbd/smb2_server.c:641(smb2_validate_sequence_number) > Jun 20 13:00:00 orca smbd[6033]: smb2_validate_sequence_number: smb2_validate_sequence_number: bad message_id 4217 (sequence id 4287) (granted = 325, low = 3775, range = 512) > Jun 20 13:00:33 orca smbd[38213]: [2018/06/20 13:00:33.713824, 0] ../source3/smbd/smb2_server.c:641(smb2_validate_sequence_number) > Jun 20 13:00:33 orca smbd[38213]: smb2_validate_sequence_number: smb2_validate_sequence_nu...
2020 Jul 05
1
[PATCH 5/5] virtio_console: Constify some static variables
On (Wed) 01 Jul 2020 [22:09:50], Rikard Falkeborn wrote: > The id_table and feature_table pointers in struct virtio_driver are > pointers to const. Mark the corresponding static variables const to > allow the compiler to put them in read-only memory. > > Before: > text data bss dec hex filename > 25447 713 76 26236 667c
2006 Sep 23
8
svn problems
I can consistently segfault the 0.10.4 gem, so I''m trying to get the subversion version working with hopes towards tracking the problem down. I have a fresh SVN checkout but: a) the version (in ferret.rb) claims to be 0.9.6; and b) Ferret::Index::FieldInfos and a couple other classes are missing at run time. It looks like this is because they''re not exported in the C
2006 Sep 23
0
TermQuery problem
Hi, Using the 0.10.4 gem under ruby 1.8.5 (2006-08-25) [i686-linux], I get different results with a TermQuery and a search string. Namely, using a search string seems to always work whereas using a TermQuery often doesn''t return any entries. For example: > x=@i[450][:message_id] => "9e7db9110509070759732b21c4 at mail.gmail.com" > @i.search("message_id:#{x}") => #<struct Ferret::Search::TopDocs total_hits=1, hits=[#<struct Ferret::Search::Hit doc=450, score=6.51688194274902>], max_score=6.51688194274902> > @i.search(Ferre...
2006 Feb 17
2
Accessing just the body of email in text format?
I am interested in accessing the body of the email in text format using IMAP to receive emails. So far I have tried the following #body = imap.fetch(message_id, "BODY[TEXT]") #body = imap.fetch(message_id, ["BODY[]"])[0].attr[''BODY[]''] But both of the above give me body text + the headers including Content-Type etc. How can I access just the body in text format. I appreciate your assistance....
2006 Apr 06
1
Primary keys and migrations
I have a join table I''m creating with a migration as follows: create_table :read_global_messages, :id=>false do |t| t.column :user_id, :integer t.column :message_id, :integer end So far so good, however I want the primary key to be user_id and message_id. How do I do this? I tried the following, but that doesn''t work: add_index :read_global_messages, [:user_id, :message_id], :primary I could just add it as a normal index, but ideally I&...
2006 Apr 22
7
Proper Database Design For A Newbie
..._id to point to the user_id. I guess I am wanting to know what is the best way to go about setting up the model file when you have two fields that point to the same table id. I realize that I could separate the message table out to something like this and use HABTM: CREATE TABLE `senders` ( `message_id` int(11) NOT NULL default ''0'', `sender_id` int(11) NOT NULL default ''0'', ) ENGINE=MyISAM DEFAULT CHARSET=latin1; CREATE TABLE `receivers` ( `message_id` int(11) NOT NULL default ''0'', `receiver_id` int(11) NOT NULL default ''0'...
2009 Jul 23
11
Problem with named_scope
Here are my scopes: default_scope :order => ''posted_on DESC'', :conditions => { :status => ''visible'' } named_scope :positive, :conditions => { :rating => ''positive'', :status => ''visible'' } named_scope :neutral, :conditions => { :rating => ''neutral'', :status =>
2015 Jan 02
0
Data stale error after short while
...packages. I set it up as per the previous box with the blazer_usb driver and all goes well, for a while. Initially, the UPS reports correctly via upsc, but after a while I get the "Data stale" error, and the box is no longer recognised. This same UPS? http://news.gmane.org/find-root.php?message_id=CA%2b%3d8wNMxFBYkT75aw2jePfA%2bLaKuNXuvDKvYG3t9B8D%2bChPwfQ%40mail.gmail.com It looks like Ubuntu 14.04 has NUT 2.7.1, so the nutdrv_qx driver is available. It is a replacement for the blazer_* drivers, and should be a superset of the blazer_usb functionality. I would recommend switching, as there...
2006 Dec 28
3
NET::IMAP / Runner problems
..., not within it def self.check_mail imap = Net::IMAP.new(''localhost'') imap.authenticate(''LOGIN'', ''username'', ''password'') imap.select(''INBOX'') imap.search([''ALL'']).each do |message_id| msg = imap.fetch(message_id,''RFC822'')[0].attr[''RFC822''] MailReader.receive(msg) #Mark message as deleted and it will be removed from storage when user session closd imap.store(message_id, "+FLAGS", [:Deleted]) end end Th...
2015 Jan 02
2
Data stale error after short while
A couple of years ago, Arnaud helped me get my Apollo Line Interactive UPS working, using the blazer_usb driver. Now I've run into another problem, having rebuilt my HP Proliant Microserver into an ESXi 5.5 managed hypervisor with various VMs. One of the VMs is a FreeNAS server which manages the storage for the other VMs so graceful shutdowns are important. I built a single VM to monitor the
2006 Apr 25
0
IMAP disconnect method broken?
...#39;,''my_login'',''my_password'' imap = Net::IMAP::new(server, 993, true) imap.login(login,password) imap.examine(''INBOX'') puts "Message count: #{ imap.responses["EXISTS"]}" imap.search(["To", "Me"]).each do |message_id| envelope = imap.fetch(message_id, "ENVELOPE")[0].attr["ENVELOPE"] puts "#{envelope.from[0].name}: \t#{envelope.subject}" end imap.disconnect Regards, Bealach
2006 Mar 08
2
Need some brainstorming help: acts_as_taggable_list?
...ms habtm taggings, tags habtm taggings) I also want users to be able to order their tagged items. So if I''ve tagged 5 items as "cool" I want to be able to order them 1-5. The DB design seems straight forward: items: id user_id name, etc tags: id name taggings: tag_id message_id position But it gets hairy when trying to use ActiveRecord relationships. There are some good ideas about HABTM lists: http://wiki.rubyonrails.org/rails/pages/HowToUseActsAsListWithHasAndBelongsToMany But easily getting that to only show messages for a particular user is not straightforward. Y...
2006 Sep 27
5
Question about has_one
I have a question about regarding the use of ''has_one'' in this scenario: Schema: User ---- id first_name last_name UserMessage ---- user_id message_id Message ---- id Assuming business rules dictate that a Message can have at most ONE User (let''s assume a message can be created without a user associated to it), these are my questions: 1) How would I use has_one in my model (if that''s the proper association to use) to indic...
2023 Sep 07
0
[Announce] Samba 4.17.11 Available for Download
...??? attempted to remove the destination. ?? * BUG 15427: Spotlight results return wrong date in result list. ?? * BUG 15463: macOS mdfind returns only 50 results. o? Volker Lendecke <vl at samba.org> ?? * BUG 15346: 2-3min delays at reconnect with smb2_validate_sequence_number: ???? bad message_id 2. o? Stefan Metzmacher <metze at samba.org> ?? * BUG 15346: 2-3min delays at reconnect with smb2_validate_sequence_number: ???? bad message_id 2. ?? * BUG 15441: samba-tool ntacl get segfault if aio_pthread appended. ?? * BUG 15446: DCERPC_PKT_CO_CANCEL and DCERPC_PKT_ORPHANED can'...
2023 Sep 07
0
[Announce] Samba 4.17.11 Available for Download
...??? attempted to remove the destination. ?? * BUG 15427: Spotlight results return wrong date in result list. ?? * BUG 15463: macOS mdfind returns only 50 results. o? Volker Lendecke <vl at samba.org> ?? * BUG 15346: 2-3min delays at reconnect with smb2_validate_sequence_number: ???? bad message_id 2. o? Stefan Metzmacher <metze at samba.org> ?? * BUG 15346: 2-3min delays at reconnect with smb2_validate_sequence_number: ???? bad message_id 2. ?? * BUG 15441: samba-tool ntacl get segfault if aio_pthread appended. ?? * BUG 15446: DCERPC_PKT_CO_CANCEL and DCERPC_PKT_ORPHANED can'...
2005 Dec 19
4
need some help designing my messaging system
I am trying to create a messaging system for my users but I''m having a hard time designing my db. This is what i have in mind, but I am not sure if its the best approach. user has_one inbox user has_one outbox inbox has_many messages outbox has_many messages inbox table user_id outbox table user_id messages table box_id (refers to either inbox or outbox - how?) from_id to_id