Displaying 10 results from an estimated 10 matches for "atext".
Did you mean:
text
2006 May 15
3
FXTextField - posSelected?(pos)
Hi,
I wonder if am facing a bug or something else
On a FXtextField, I want to detect the low and high pos of the selected string
example: the text is: 0123456789
The selected string is : 234567
first = last = -1
atext.text.length.times do |pos|
first = pos if atext.posSelected?(pos) and first < 0
last = pos if atext.posSelected?(pos)
end
puts " first = #{first} last = #{last}"
Result: last == 8 !!!!!! ===> problem , 8 is not selected
M...
2016 Apr 11
4
[PATCH 0/7] Fixes for lib-mail message-address
...e in test-message-address.c. Now that the unit test changes are done in a separate commit I'm not really sure which test change is testing which commit or if some tests are missing. At least the "Quote and escape strings if needed" patch needs more tests for different kinds of escapes/atext/non-atext chars and =? in strings.
>
Ok. If you really need that I can rework my patches. But I'm thinking
what to do with tests... I have written lot of examples and tests
scenarios in perl for that new perl module. But dovecot test framework
is not easy to use as perl Test::More/Test::Sp...
2016 Apr 06
3
[PATCH 0/7] Fixes for lib-mail message-address
On Monday 04 April 2016 19:35:22 Pali Roh?r wrote:
> On Monday 04 April 2016 19:31:06 aki.tuomi at dovecot.fi wrote:
> > Can you please send them directly to me, please?
> > ---
> > Aki Tuomi
>
> Sent.
Received? Are patches OK now?
--
Pali Roh?r
pali.rohar at gmail.com
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
2006 May 10
8
E-mail validtor??
Does anyone have a good working e-mail validator? or even some regexp to
make the validates_format_of work right... that would be awesome. Also,
maybe an online tutorial for regexp. i''ve always been afraid of it but i
think it''s time to face the fears.
thanks!
--
Posted via http://www.ruby-forum.com/.
2006 Mar 14
8
email address parse
hi all
how to parse such email string to a array:
#--------------------------------------------
"joe black"<joe_1@joe_black.com> joe_2@joe_black.com,
joe_3@joe_black.com
#--------------------------------------------
seems emails from user input include various format. and i have to
split them to a array.
any idea?
regards.
--
Posted via http://www.ruby-forum.com/.
2006 Sep 11
1
Wrong content-type reported for messages with only a text/html body?
Hi all,
It looks like Dovecot 1.0rc7 reports the wrong content-type for messages
with only a text/html body. An example of such a message is:
---
From: mathijs at izecom.com
Subject: test
To: foobar at example.com
Content-Type: text/html;
test
---
When I talk IMAP to Dovecot directly using telnet and fetch the
bodystructure of this message, Dovecot replies:
* 1 FETCH (BODYSTRUCTURE
2017 Oct 26
2
Bug: lmtp proxy does not quote local parts with spaces
...n}
which kind of "fixes" the issue, which I had thought sufficient last
year for the limited range of inputs I have, but it turns out to break
director hashing as the username is then hashed containing quotes (not
to mention fun with recipient_delimiter).
Looking through RFC2822 any non-atext character in username, detail or
delimiter is enough for the local part to be converted to quoted-string.
Now I've traced it through in the source, I could have a look at
starting to get a fix together tomorrow with an aim to providing a pull
request, if it turns out there are no side-effects t...
2017 Oct 26
2
Bug: lmtp proxy does not quote local parts with spaces
There seems to be a bug with RFC822 processing in ltmp proxying that doesn't
quote local parts that, for example, contain spaces.
director config:
director_username_hash = %Ln
lmtp_proxy = yes
recipient_delimiter = +
protocol lmtp {
auth_socket_path = director-userdb
auth_username_chars =
auth_username_format = %Ln
passdb {
2006 Mar 22
3
Parent-Child Tables Help
can someone help me with this
i have a table
cars
(
id int
model_id int
make_id int
color_id int
description text
constraint fk_cars_carmake foreign key(make_id) references
carmakes(id),
constraint fk_cars_carmodel foreign key(model_id) references
carmodels(id),
constraint fk_cars_color foreign key(color_id) references colors(id)
)
carmakes
(
id int
carmake varchar
)
carmodels
(
id
2017 Nov 01
2
Bug: lmtp proxy does not quote local parts with spaces
...chr(str, '@');
+ if (domain == NULL) {
+ domain = str;
+ while (*domain != '\0')
+ domain++;
+ }
+
+ /* see if we need to quote local part */
+ for (p=str; p < domain; p++) {
+ if (!IS_ATEXT(*p))
+ break;
+ }
+
+ /* local part is atext */
+ if (p == domain) {
+ str_append(dest_r, str);
+ return;
+ }
+
+ /* need to quote the local part */
+ str_append_c(dest_r, '"');
+
+ /*...