<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel about="http://permalink.gmane.org/gmane.os.openbsd.misc">
    <title>gmane.os.openbsd.misc</title>
    <link>http://permalink.gmane.org/gmane.os.openbsd.misc</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.os.openbsd.misc/151424"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.os.openbsd.misc/151423"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.os.openbsd.misc/151422"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.os.openbsd.misc/151421"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.os.openbsd.misc/151420"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.os.openbsd.misc/151419"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.os.openbsd.misc/151418"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.os.openbsd.misc/151417"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.os.openbsd.misc/151416"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.os.openbsd.misc/151415"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.os.openbsd.misc/151414"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.os.openbsd.misc/151413"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.os.openbsd.misc/151412"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.os.openbsd.misc/151411"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.os.openbsd.misc/151410"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.os.openbsd.misc/151409"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.os.openbsd.misc/151408"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.os.openbsd.misc/151407"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.os.openbsd.misc/151406"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.os.openbsd.misc/151405"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://permalink.gmane.org/gmane.os.openbsd.misc/151424">
    <title>Re: PANIC on latest source</title>
    <link>http://permalink.gmane.org/gmane.os.openbsd.misc/151424</link>
    <description>hi,

can you please try this diff and see if it solves your panics?

Index: if_em.c
===================================================================
RCS file: /cvs/src/sys/dev/pci/if_em.c,v
retrieving revision 1.199
diff -u -p -r1.199 if_em.c
--- if_em.c29 Nov 2008 10:23:29 -00001.199
+++ if_em.c2 Dec 2008 02:36:08 -0000
&lt; at &gt;&lt; at &gt; -31,7 +31,7 &lt; at &gt;&lt; at &gt; POSSIBILITY OF SUCH DAMAGE.
 
 ***************************************************************************/
 
-/* $OpenBSD: if_em.c,v 1.199 2008/11/29 10:23:29 sthen Exp $ */
+/* $OpenBSD: if_em.c,v 1.197 2008/11/26 00:14:48 dlg Exp $ */
 /* $FreeBSD: if_em.c,v 1.46 2004/09/29 18:28:28 mlaier Exp $ */
 
 #include &lt;dev/pci/if_em.h&gt;
&lt; at &gt;&lt; at &gt; -164,6 +164,12 &lt; at &gt;&lt; at &gt; void em_update_stats_counters(struct em_
 void em_txeof(struct em_softc *);
 int  em_allocate_receive_structures(struct em_softc *);
 int  em_allocate_transmit_structures(struct em_softc *);
+#ifdef __STRICT_ALIGNMENT
+void em_realign(struct em_softc *, struct mbuf *, u_int16_t *);
+#else
+#define em_realign(a, b, c) /* </description>
    <dc:creator>David Gwynne</dc:creator>
    <dc:date>2008-12-02T04:17:42</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.os.openbsd.misc/151423">
    <title>Re: sendmail and PF</title>
    <link>http://permalink.gmane.org/gmane.os.openbsd.misc/151423</link>
    <description>2008/12/1 Jay Torrini &lt;jay.torrini&lt; at &gt;gmail.com&gt;:

Jason has given you this short answer before you posted your pf.conf:

If I understand you correctly, then PF and sendmail are running on the
same host and you'd like to send emails from that host to somewhere
else. This means you have, in the first instance, to allow smtp
traffic OUT. (Once state is established, the conversation with the
other MTA will proceed anyway, and replies from the remote MTA will be
let through.) None of your quoted rules appear to allow smtp traffic
OUT, just in but that's irrelevant, for the said reason. Jason's rule
should sort you out.

'Hope I'm not mistaken/overlooking something, and 'hope this helps,
Cheers,
--ropers


</description>
    <dc:creator>ropers</dc:creator>
    <dc:date>2008-12-02T03:48:06</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.os.openbsd.misc/151422">
    <title>Re: ftp.openbsd.org welcome message out of date</title>
    <link>http://permalink.gmane.org/gmane.os.openbsd.misc/151422</link>
    <description>and yes i sent this to beck too. (I think that's who would be incharge 
of updating it).

Jean-Philippe Ouellet wrote:


</description>
    <dc:creator>Jean-Philippe Ouellet</dc:creator>
    <dc:date>2008-12-02T03:17:17</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.os.openbsd.misc/151421">
    <title>ftp.openbsd.org welcome message out of date</title>
    <link>http://permalink.gmane.org/gmane.os.openbsd.misc/151421</link>
    <description>When logging into the ftp server I get the nice ascii puffy, but it also 
says "OpenBSD 4.4 is available for pre-order!" Now that 4.4 is out the 
CDs are not *pre-ordered* but ordered. This is not a problem, but since 
nobody has brought it up before nor has the ftp server been updated, i'm 
letting you know.

If this does not belong on misc, then please point me in the right 
direction.

If you didn't allready pre-order the cd, please remember to order your 
CDs to support the project.


</description>
    <dc:creator>Jean-Philippe Ouellet</dc:creator>
    <dc:date>2008-12-02T03:11:43</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.os.openbsd.misc/151420">
    <title>news letter</title>
    <link>http://permalink.gmane.org/gmane.os.openbsd.misc/151420</link>
    <description>V.A.T Reg. No.4680197417 Reg. No. 2002/024004/07
TEL:(012) 252 7513
FAX:(012) 252 7613
Email: Newheights70&lt; at &gt;telkomsa.net &lt;mailto:newheights70&lt; at &gt;telkomsa.net&gt;
URL: www.newheightsgroup.co.za &lt;http://www.newheightsgroup.co.za/&gt;

PO BOX 3497 BRITS 0250




IF THIS MAIL IS NOT APPLICABLE TO YOU PLEASE FORWARD IT TO THE RELEVANT
PERSON
WE AT NEW HEIGHTS WOULD LIKE TO INTRODUCE THE BUDGET FRIENDLY FIRE SAFETY
SYSTEM, WHICH WE WOULD LIKE TO IMPLEMENT ON YOUR PREMISES. THE SYSTEM IS A
VERY COST EFFECTIVE SYSTEM AND WILL WORK OUT ON A MONTHLY RATE OF R 8-00 PER
UNIT
E.G. 50 Units x R 8-00 = R 400 per Month (R 4800-00 per Year)
BENEFIT: NOW YOU GET 12 SERVICES INSTEAD OF ONE AT EQUAL MONTHLY RATES
* One Major Service as per SANS per Year
* 11 x Monthly Inspections
* 1 Fire Training Session per Year
* Complete Register System
* Numbering of Equipment
* Annual Survey of Equipment
* One First Aid Manual, One Health &amp; Safety Manual
   and One Incident Investigation Manual (Value Approx R 6000-00)
* All Recharges and Refills
*</description>
    <dc:creator>marketing&lt; at &gt;fire-equipment.org</dc:creator>
    <dc:date>2008-12-02T00:36:50</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.os.openbsd.misc/151419">
    <title>dmesg Asus EEE Box 202</title>
    <link>http://permalink.gmane.org/gmane.os.openbsd.misc/151419</link>
    <description>Hello,

I've successfully installed OpenBSD -current on a Asus EEE Box 202.
There are some minor issues:

- only the bsd.rd and bsd.mp kernel boots the system, bsd just stops at
"entry point 0x200120"

- re0 detected wrong media options (10BaseT), so I set it manually to
100basetx full-duplex


I didn't test sound and wireless lan but as far as I know ral0 and
azalia0 are the same than in the Asus EEE PC 1000H and there wireless
lan and sound works without any problems.

Best regards,
Sven
\^Z\M-=\^C0\^Z\M-=\^C&lt; at &gt;\^Z\M-=\^CP\^Z\M-=\^C`\^Z\M-=\^Cp\^Z\M-=\^C\M^&lt; at &gt;\^Z\M-=\^C\M^P\^Z\M-=\^C\240\^Z\M-=\^C\M-0\^Z\M-=\^C\M-&lt; at &gt;\^Z\M-=\^C\M-P\^Z\M-=0 at acpi0: PWRB

acpivideo at acpi0 not configured

bios0: ROM list: 0xc0000/0xec00! 0xcf000/0x1000

cpu0: unknown Enhanced SpeedStep CPU, msr 0x060f0c2606000c26

cpu0: using only highest and lowest power states

cpu0: Enhanced SpeedStep 1600 MHz (1308 mV): speeds: 1600, 800 MHz

pci0 at mainbus0 bus 0: configuration mode 1\^C\M-`\^_\M-=\^C\M-p\^_\M-=\^C \M-=\^C\^P \M-=\^C  \M-=</description>
    <dc:creator>Sven Wolf</dc:creator>
    <dc:date>2008-12-01T22:49:26</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.os.openbsd.misc/151418">
    <title>tester: disregard</title>
    <link>http://permalink.gmane.org/gmane.os.openbsd.misc/151418</link>
    <description>tester: disregard


</description>
    <dc:creator>Steven</dc:creator>
    <dc:date>2008-12-01T21:26:31</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.os.openbsd.misc/151417">
    <title>Re: OpenBSD and XenSource</title>
    <link>http://permalink.gmane.org/gmane.os.openbsd.misc/151417</link>
    <description>Stephan, thanks for the notice -- I just posted my $0.02 on that board 
as well. If you manage to make any progress in your efforts (or any one 
else's) to run OpenBSD under Xen with any amount of usefulness, I'd be 
interested to hear about it. Feel free to contact me off-list.

Cheers!
-Tico


</description>
    <dc:creator>tico</dc:creator>
    <dc:date>2008-12-01T20:00:14</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.os.openbsd.misc/151416">
    <title>Re: bash for root?</title>
    <link>http://permalink.gmane.org/gmane.os.openbsd.misc/151416</link>
    <description>...

Other than generating duplicate user number error reports from the 
nightly security check, the generally bad idea of duplicate user 
numbers, creating confusion and ambiguity that doesn't need to be there, 
the likelihood that you will have forgot the 'root' password when you 
need it and being a really silly way to solve a completely non-problem? 
  No reason at all.

Why not switch the keycaps around on your keyboard?
Why not wear mis-matched shoes?
(those are bad examples, I can come up with justifications for doing 
them...)

Some people are really convinced their feet need holes.  The 
(non)problem doesn't justify your solution -- and the real problems it 
would create.


Nick.


</description>
    <dc:creator>Nick Holland</dc:creator>
    <dc:date>2008-12-01T12:55:48</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.os.openbsd.misc/151415">
    <title>Re: sendmail and PF</title>
    <link>http://permalink.gmane.org/gmane.os.openbsd.misc/151415</link>
    <description>Just need to know what to let in.

ext_if="dc0"
trusted = "REMOVED"
webports = "{ http }"
table &lt;blockedips&gt; persist file "/etc/pf.blockedip.conf"

set block-policy return
set optimization aggressive
scrub in all

antispoof for $ext_if

pass in quick on $ext_if inet proto tcp from $trusted to $ext_if port ssh

block in log (all) all

block in quick from &lt;blockedips&gt;

pass in on $ext_if proto tcp from any to $ext_if port $webports

pass in on $ext_if inet proto tcp from any to any port domain
pass in on $ext_if inet proto tcp from any to any port smtp

On Mon, Dec 1, 2008 at 11:26 AM, Jason Dixon &lt;jason&lt; at &gt;dixongroup.net&gt; wrote:



</description>
    <dc:creator>Jay Torrini</dc:creator>
    <dc:date>2008-12-01T18:40:17</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.os.openbsd.misc/151414">
    <title>Re: voip card</title>
    <link>http://permalink.gmane.org/gmane.os.openbsd.misc/151414</link>
    <description>
no, but there are PSTN/SIP gateways which cost about the same as the
cards (e.g. patton)


</description>
    <dc:creator>Stuart Henderson</dc:creator>
    <dc:date>2008-12-01T18:36:40</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.os.openbsd.misc/151413">
    <title>Re: sendmail and PF</title>
    <link>http://permalink.gmane.org/gmane.os.openbsd.misc/151413</link>
    <description> 
Short answer:
pass out on $ext_if from ($ext_if) to any port smtp

Long answer:
Show us your ruleset so we can give you a useful answer.


(ok, os that was only a few bytes longer)

</description>
    <dc:creator>Jason Dixon</dc:creator>
    <dc:date>2008-12-01T18:26:12</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.os.openbsd.misc/151412">
    <title>Re: bash for root?</title>
    <link>http://permalink.gmane.org/gmane.os.openbsd.misc/151412</link>
    <description>

Another reason I've found is the option "set -o pipefail", which is
handy when you want the ERR trap to fire when any single command
of a set of piped commands exits non-zero.

(If there's a better way of doing things, I'd love to hear about it...)

</description>
    <dc:creator>Jurjen Oskam</dc:creator>
    <dc:date>2008-12-01T18:13:15</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.os.openbsd.misc/151411">
    <title>Deadline for DCBSDCon 2009 Call for Papers</title>
    <link>http://permalink.gmane.org/gmane.os.openbsd.misc/151411</link>
    <description>A quick reminder that today is the last day for CFP submissions for the
2009 DCBSDCon conference!  Interested speakers should submit their
abstracts to cfp&lt; at &gt;dcbsdcon.org.

Main Website: http://www.dcbsdcon.org/
Call For Papers: http://www.dcbsdcon.org/cfp.html

Thanks,

</description>
    <dc:creator>Jason Dixon</dc:creator>
    <dc:date>2008-12-01T17:59:39</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.os.openbsd.misc/151410">
    <title>sendmail and PF</title>
    <link>http://permalink.gmane.org/gmane.os.openbsd.misc/151410</link>
    <description>Hi there,

I am trying to use sendmail to send messages from a self-protecting
server running PF. I'm only interested in sending mail from the
server itself so the default configuration of sendmail is fine. Sendmail
works as expected when PF is disabled, and fails (obviously) when it's
enabled. I have a default-deny policy for PF. What do I need to do to
allow sendmail to work properly behind my firewall? I've been playing
with all sorts of things but so far I've had no luck.
I'd really appreciate any help or pointers here.


</description>
    <dc:creator>Jay Torrini</dc:creator>
    <dc:date>2008-12-01T17:43:25</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.os.openbsd.misc/151409">
    <title>Re: cannot nfs mount an mfs</title>
    <link>http://permalink.gmane.org/gmane.os.openbsd.misc/151409</link>
    <description>Try removing the nosuid option from fstab, I had a similar problem and it
fixed.

Best Regards.

2008/12/1 &lt;j&lt; at &gt;bitminer.ca&gt;



</description>
    <dc:creator>Christiano Farina Haesbaert</dc:creator>
    <dc:date>2008-12-01T17:45:05</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.os.openbsd.misc/151408">
    <title>CONTACT MR.PAUL.</title>
    <link>http://permalink.gmane.org/gmane.os.openbsd.misc/151408</link>
    <description>I have a new email address!You can now email me at: julesdaniel&lt; at &gt;rocketmail.com



- Dear Good friend , How are you today? Hope all is well with you and your family?, You may not understand why this mail came to you.But if you do not remember me or my colleague, you might have received an email from us in the past regarding a million-dollar business proposal which we never concluded with you. I am using this opportunity to inform you that this million-dollar business has been concluded with the assistance of another partner from United Kingdom (London) who financed the transaction to a logical conclusion.I thank you for your great effort to our unfinished transfer of fund into your account due to one reason or the other best known to you.But I want to inform you that I have successfully transferred the fund out of the Africa to my new partner's account in UK who assisted
  me in this great venture but now I am in China for business mission, Due to your effort then, sincerity, courage and trust worthiness show</description>
    <dc:creator>Mr.Daniel Jules</dc:creator>
    <dc:date>2008-12-01T16:03:12</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.os.openbsd.misc/151407">
    <title>Re: cannot nfs mount an mfs</title>
    <link>http://permalink.gmane.org/gmane.os.openbsd.misc/151407</link>
    <description>
Thanks!  Somehow I find this hack both very creative and amusing at the
same time.  (How deep are the filesystem layers?)

I wonder if there is a technical reason why plain exports do not work.


--John


</description>
    <dc:creator>j&lt; at &gt;bitminer.ca</dc:creator>
    <dc:date>2008-12-01T15:50:32</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.os.openbsd.misc/151406">
    <title>Re: bash for root?</title>
    <link>http://permalink.gmane.org/gmane.os.openbsd.misc/151406</link>
    <description>2008/11/30 Nick Holland &lt;nick&lt; at &gt;holland-consulting.net&gt;:

Why not set up a user (ex: bigguy) and then force his uid and gid to
be 0 and 0 with vipw?  Give that user a nice coloured bash prompt and
set up directories in his home.  This way you get a customized
superuser while keeping the real root environment pristine.

/juan


</description>
    <dc:creator>Juan Miscaro</dc:creator>
    <dc:date>2008-12-01T14:07:43</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.os.openbsd.misc/151405">
    <title>OpenBSD and XenSource</title>
    <link>http://permalink.gmane.org/gmane.os.openbsd.misc/151405</link>
    <description>Those of you interested in running OpenBSD as a Xen guest in
XenEnterprise might want to use this opportunity to raise their voice:

http://forums.citrix.com/thread.jspa?threadID=151525

(Please note I have no intention to discus the boon and bane of
virtualization...)

Cheers,
Stephan

</description>
    <dc:creator>Stephan A. Rickauer</dc:creator>
    <dc:date>2008-12-01T13:09:05</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.os.openbsd.misc/151404">
    <title>Mail-ClamAV</title>
    <link>http://permalink.gmane.org/gmane.os.openbsd.misc/151404</link>
    <description>Hello,

I am trying to compile perl Mail-ClamAV-0.22
(http://search.cpan.org/~sabeck/Mail-ClamAV-0.22/ClamAV.pm) for
Mailscanner clamavmodule  for virus checking.


At the beginning i had problem with:


</description>
    <dc:creator>Mariusz Makowski</dc:creator>
    <dc:date>2008-12-01T10:32:50</dc:date>
  </item>
  <textinput about="http://search.gmane.org/?group=$group=gmane.os.openbsd.misc">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.os.openbsd.misc</link>
  </textinput>
</rdf:RDF>
